mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
f250065003
Triangle area was meant just to check Kahan's equation, but it found a problem with swapping vars. swap.r currently fails.
11 lines
159 B
Bash
Executable file
11 lines
159 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
|