Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 480

Show
Ignore:
Timestamp:
01/06/11 07:35:09 (14 years ago)
Author:
braddr
Message:

Ok, all the sync tests pass now, sweet.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/posix.mak

    r477 r480  
    389389################### Library generation ######################### 
    390390 
    391391$(DRUNTIME): $(OBJS) $(SRCS) win32.mak 
    392392    $(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS) 
    393393 
    394394unittest : $(addprefix $(OBJDIR)/,$(SRC_D_MODULES)) $(DRUNTIME) $(OBJDIR)/emptymain.d 
    395395    @echo done 
    396396 
    397397ifeq ($(MODEL),64) 
    398398DISABLED_TESTS = \ 
    399     core/sync/barrier \ 
    400     core/sync/condition \ 
    401     core/sync/mutex \ 
    402     core/sync/rwmutex \ 
    403     core/sync/semaphore \ 
    404399    rt/adi \ 
    405400    rt/dmain2 
    406401else 
    407402DISABLED_TESTS = \ 
    408403    rt/dmain2 
    409404endif 
    410405 
    411406$(addprefix $(OBJDIR)/,$(DISABLED_TESTS)) : 
    412407    @echo $@ - disabled 
    413408