mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-01 17:04:29 +00:00
29 lines
872 B
Plaintext
29 lines
872 B
Plaintext
|
# gsh script to run tests and collect results
|
||
|
# Written by Dave Tribby * August 1997
|
||
|
|
||
|
# Name of gsh script containing test cases
|
||
|
set command="dotests"
|
||
|
# Sometimes the file type is modified by editing; make it executable
|
||
|
chtyp -l exec $command
|
||
|
|
||
|
# Filenames for raw and modified results
|
||
|
set raw_file="/tmp/rawlist"
|
||
|
set result_file="test.list"
|
||
|
|
||
|
# Location of tr command that knows how to handle classes
|
||
|
set trcmd="/src/usr.bin/tr/tr"
|
||
|
|
||
|
# --- Begin the tests ---
|
||
|
|
||
|
echo -n "Executing test script \"$command\" from directory "
|
||
|
pwd
|
||
|
|
||
|
# Create a new gsh invocation and record all I/O
|
||
|
echo "$command ; exit" | script $raw_file
|
||
|
|
||
|
# Cleanup control chars using either of the following...
|
||
|
echo "Done with tests. Removing control characters from results file"
|
||
|
$trcmd -c -ds '[:print:]\r' '\r' < $raw_file > $result_file
|
||
|
|
||
|
echo "Tests results have been saved as \"$result_file\""
|