Changeset 8271 for trunk/tools
- Timestamp:
- Apr 16, 2002, 2:10:12 AM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/bin/buildenv.cmd
r8219 r8271 1 /* $Id: buildenv.cmd,v 1. 3 2002-04-10 15:20:42 bird Exp $1 /* $Id: buildenv.cmd,v 1.4 2002-04-16 00:10:12 bird Exp $ 2 2 * 3 3 * This is the master environment script. It contains settings for many … … 124 124 when (sEnv.i = 'watcomc11') then rc = WatComC11(fRM); 125 125 when (sEnv.i = 'watcomc11c') then rc = WatComC11c(fRM); 126 when (sEnv.i = 'odin32testcase') then rc = Odin32Testcase(fRM); 126 127 127 128 otherwise … … 205 206 when (sProgram = 'watcom11c') then return 'f:\watcom11c'; 206 207 208 /* 209 * Testcase stuff for odin. 210 */ 211 when (sProgram = 'testcase_drive_unused') then return 'l'; /* reqired */ 212 when (sProgram = 'testcase_drive_fixed') then return 'c'; /* reqired */ 213 when (sProgram = 'testcase_drive_floppy') then return 'a'; /* reqired */ 214 when (sProgram = 'testcase_drive_cdrom') then return 'k'; /* optional */ 215 when (sProgram = 'testcase_drive_network') then return 's'; /* optional */ 216 when (sProgram = 'testcase_drive_ramdisk') then return ''; /* optional */ 217 /* when (sProgram = '') then return ''; 218 when (sProgram = '') then return ''; 219 when (sProgram = '') then return ''; 220 when (sProgram = '') then return '';*/ 221 222 207 223 otherwise 208 224 do … … 526 542 527 543 544 /* 545 * Odin32 testcase setup. 546 */ 547 Odin32Testcase: procedure 548 parse arg fRM 549 call EnvVar_Set fRM, 'odin32_testcase_drive_unused', QueryPath('testcase_drive_unused'); 550 call EnvVar_Set fRM, 'odin32_testcase_drive_fixed', QueryPath('testcase_drive_fixed') 551 call EnvVar_Set fRM, 'odin32_testcase_drive_floppy', QueryPath('testcase_drive_floppy') 552 call EnvVar_Set fRM, 'odin32_testcase_drive_cdrom', QueryPath('testcase_drive_cdrom') 553 call EnvVar_Set fRM, 'odin32_testcase_drive_network', QueryPath('testcase_drive_network') 554 call EnvVar_Set fRM, 'odin32_testcase_drive_ramdisk', QueryPath('testcase_drive_ramdisk') 555 return 0; 528 556 529 557 /*
Note:
See TracChangeset
for help on using the changeset viewer.