mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-01 13:30:42 +00:00
12 lines
163 B
Text
12 lines
163 B
Text
|
#! /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
|