Showing with 4 additions and 56 deletions.
  1. +0 −1 mak/MANIFEST
  2. +0 −51 src/unittest.d
  3. +2 −2 win32.mak
  4. +2 −2 win64.mak
1 change: 0 additions & 1 deletion mak/MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ MANIFEST=\
src\object_.d \
src\object.di \
src\test_runner.d \
src\unittest.d \
\
src\core\atomic.d \
src\core\bitop.d \
Expand Down
51 changes: 0 additions & 51 deletions src/unittest.d

This file was deleted.

4 changes: 2 additions & 2 deletions win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,8 @@ $(GCSTUB) : src\gcstub\gc.d win$(MODEL).mak
$(DRUNTIME): $(OBJS) $(SRCS) win$(MODEL).mak
$(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS)

unittest : $(SRCS) $(DRUNTIME) src\unittest.d
$(DMD) $(UDFLAGS) -L/co -unittest src\unittest.d $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME)
unittest : $(SRCS) $(DRUNTIME)
$(DMD) $(UDFLAGS) -L/co -unittest -ofunittest.exe -main $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME)
unittest

zip: druntime.zip
Expand Down
4 changes: 2 additions & 2 deletions win64.mak
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,8 @@ $(GCSTUB) : src\gcstub\gc.d win64.mak
$(DRUNTIME): $(OBJS) $(SRCS) win64.mak
$(DMD) -lib -of$(DRUNTIME) -Xfdruntime.json $(DFLAGS) $(SRCS) $(OBJS)

unittest : $(SRCS) $(DRUNTIME) src\unittest.d
$(DMD) $(UDFLAGS) -version=druntime_unittest -unittest src\unittest.d $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME) user32.lib
unittest : $(SRCS) $(DRUNTIME)
$(DMD) $(UDFLAGS) -version=druntime_unittest -unittest -ofunittest.exe -main $(SRCS) $(DRUNTIME) -debuglib=$(DRUNTIME) -defaultlib=$(DRUNTIME) user32.lib
unittest

zip: druntime.zip
Expand Down