Changeset 903 in kBuild for trunk/src/gmakenew/tests/test_driver.pl
- Timestamp:
- May 23, 2007 5:31:19 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmakenew/tests/test_driver.pl
r503 r903 29 29 # variables and then calls &toplevel, which does all the real work. 30 30 31 # $Id: test_driver.pl,v 1. 19 2006/03/10 02:20:45psmith Exp $31 # $Id: test_driver.pl,v 1.21 2007/03/20 03:02:26 psmith Exp $ 32 32 33 33 … … 79 79 { 80 80 # Pull in benign variables from the user's environment 81 # 81 82 82 foreach (# UNIX-specific things 83 'TZ', ' LANG', 'TMPDIR', 'HOME', 'USER', 'LOGNAME', 'PATH',83 'TZ', 'TMPDIR', 'HOME', 'USER', 'LOGNAME', 'PATH', 84 84 # Purify things 85 85 'PURIFYOPTIONS', … … 92 92 $makeENV{$_} = $ENV{$_} if $ENV{$_}; 93 93 } 94 95 # Make sure our compares are not foiled by locale differences 96 97 $makeENV{LC_ALL} = 'C'; 94 98 95 99 # Replace the environment with the new one … … 544 548 local($line); 545 549 546 print "Usage: perl $plname [testname] [-verbose] [-detail] [-keep]\n"; 547 print " [-profile] [-usage] [-help] " 548 . "[-debug]\n"; 549 foreach $line (@moreusage) 550 { 551 print " $line\n"; 550 print "usage:\t$plname [testname] [-verbose] [-detail] [-keep]\n"; 551 print "\t\t\t[-profile] [-usage] [-help] [-debug]\n"; 552 foreach (@moreusage) { 553 print "\t\t\t$_\n"; 552 554 } 553 555 }
Note:
See TracChangeset
for help on using the changeset viewer.