Changeset 68
- Timestamp:
- 07/04/07 07:19:01 (1 year ago)
- Files:
-
- branches/1.9/makefile (modified) (3 diffs)
- branches/1.9/source/test.d (modified) (2 diffs)
- branches/1.9/walnut.exe (modified) (previous)
- branches/1.9/walnut.lib (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.9/makefile
r56 r68 21 21 22 22 walnut.exe : 23 GoRC /r /fo temporary\icon.res source\icon.rc23 rcc -r -32 source\icon.rc -otemporary\icon.res 24 24 cd source 25 25 dmd $(DFLAGS) -od..\temporary $(SRC) … … 52 52 53 53 test: 54 GoRC /r /fo temporary\icon.res source\icon.rc54 rcc -r -32 source\icon.rc -otemporary\icon.res 55 55 cd source 56 56 dmd -unittest $(DFLAGS) -od..\temporary $(SRC) … … 60 60 cd .. 61 61 62 doc: 63 cd source 64 dmd -D $(DFLAGS) -od..\temporary $(SRC) 65 copy *.html ..\documentation 66 del *.html 67 cd .. 68 62 69 zip : 63 70 del backupSource.7z branches/1.9/source/test.d
r66 r68 29 29 recurseObject(Global,-1); 30 30 printf("Stage 1 was successful.\n\n"); 31 32 printf("Stage 2, calling Date methods\n"); 31 } 32 33 34 unittest { 35 Value global = Global_init(); 36 printf("Stage 2, calling Math methods\n"); 37 38 printf("Stage 2 was successful.\n\n"); 39 } 40 41 42 unittest { 43 Value global = Global_init(); 44 printf("Stage 3, calling Date methods\n"); 33 45 Value now; 34 46 d_time now2 = Date_UTC(global,global).dt; … … 185 197 printf("\t%.*s\n",Date_prototype_setUTCFullYear(now,global,args[i]).toString()); 186 198 } 187 printf("Stage 2was successful.\n\n");199 printf("Stage 3 was successful.\n\n"); 188 200 } 201 202 203
