mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 09:22:43 +00:00
It's only the beginning, but finally make check is useful for qfcc :) It even has a failing test :D
11 lines
163 B
Bash
Executable file
11 lines
163 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
|