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

Changeset 492

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

64bit changes: enable the now working adi tests. Disable the now broken time related tests. Disable the object.d tests due to new brokenness from the AA.dup change, specific to 64 bit, apparantly.

Files:

Legend:

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

    r481 r492  
    396396################### Library generation ######################### 
    397397 
    398398$(DRUNTIME): $(OBJS) $(SRCS) win32.mak 
    399399    $(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS) 
    400400 
    401401unittest : $(addprefix $(OBJDIR)/,$(SRC_D_MODULES)) $(DRUNTIME) $(OBJDIR)/emptymain.d 
    402402    @echo done 
    403403 
    404404ifeq ($(MODEL),64) 
    405405DISABLED_TESTS = \ 
    406     rt/adi \ 
     406    object_ \ 
     407    core/time \ 
     408    core/sync/condition \ 
     409    core/sync/rwmutex \ 
     410    core/sync/semaphore \ 
    407411    rt/dmain2 
    408412else 
    409413DISABLED_TESTS = \ 
    410414    rt/dmain2 
    411415endif 
    412416 
    413417$(addprefix $(OBJDIR)/,$(DISABLED_TESTS)) : 
    414418    @echo $@ - disabled 
    415419 
    416420$(OBJDIR)/% : src/%.d $(DRUNTIME) $(OBJDIR)/emptymain.d