Changeset 8271 for trunk/tools


Ignore:
Timestamp:
Apr 16, 2002, 2:10:12 AM (23 years ago)
Author:
bird
Message:

added odin32testcase environment.

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 $
    22 *
    33 * This is the master environment script. It contains settings for many
     
    124124            when (sEnv.i = 'watcomc11') then    rc = WatComC11(fRM);
    125125            when (sEnv.i = 'watcomc11c') then   rc = WatComC11c(fRM);
     126            when (sEnv.i = 'odin32testcase') then rc = Odin32Testcase(fRM);
    126127
    127128            otherwise
     
    205206        when (sProgram = 'watcom11c') then  return 'f:\watcom11c';
    206207
     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
    207223        otherwise
    208224        do
     
    526542
    527543
     544/*
     545 * Odin32 testcase setup.
     546 */
     547Odin32Testcase: 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')
     555return 0;
    528556
    529557/*
Note: See TracChangeset for help on using the changeset viewer.