mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
47decd58d0
v6 progs return float rather than int (they don't have int).
11 lines
162 B
Bash
Executable file
11 lines
162 B
Bash
Executable file
#! /bin/sh
|
|
|
|
script=$1
|
|
progs=`basename $script .run`.dat
|
|
shift
|
|
|
|
cat > $script <<EOF
|
|
#! /bin/sh
|
|
./test-harness $TEST_HARNESS_OPTS $progs "\$@"
|
|
EOF
|
|
chmod +x $script
|