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

Changeset 495

Show
Ignore:
Timestamp:
01/10/11 07:51:27 (14 years ago)
Author:
braddr
Message:

reenable core/time, core/sync/condition, core/sync/rwmutex, and core/sync/semaphore now that the 64 bit codegen bugs related to core.time are now fixed.. thanks walter.

Files:

Legend:

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

    r492 r495  
    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 = \ 
    406406    object_ \ 
    407     core/time \ 
    408     core/sync/condition \ 
    409     core/sync/rwmutex \ 
    410     core/sync/semaphore \ 
    411407    rt/dmain2 
    412408else 
    413409DISABLED_TESTS = \ 
    414410    rt/dmain2 
    415411endif 
    416412 
    417413$(addprefix $(OBJDIR)/,$(DISABLED_TESTS)) : 
    418414    @echo $@ - disabled 
    419415 
    420416$(OBJDIR)/% : src/%.d $(DRUNTIME) $(OBJDIR)/emptymain.d