hanchenye-llvm-project/llvm/test/TestRunner.sh

25 lines
712 B
Bash
Raw Normal View History

2002-02-01 12:24:47 +08:00
#!/bin/sh
#
# TestRunner.sh - This script is used to run arbitrary unit tests. Unit
# tests must contain the command used to run them in the input file, starting
# immediately after a "RUN:" string.
#
# This runner recognizes and replaces the following strings in the command:
# %s - Replaced with the input name of the program
#
2002-02-12 07:32:43 +08:00
grep 'RUN:' $1 | sed "s/^.*RUN:\(.*\)$/\1/g;s/%s/$1/g" > Output/$1.script
2002-02-01 12:24:47 +08:00
OUTPUT=Output/$1.out
2002-02-12 07:32:43 +08:00
/bin/sh Output/$1.script > $OUTPUT 2>&1 || (
2002-02-01 12:24:47 +08:00
echo "******************** TEST '$1' FAILED! ********************"
2002-02-12 07:32:43 +08:00
echo "Command: "
cat Output/$1.script
2002-02-01 12:24:47 +08:00
echo "Output:"
cat $OUTPUT
rm $OUTPUT
echo "******************** TEST '$1' FAILED! ********************"
)