1
0
Fork 0
mutter-performance-source/tests/conform/run-tests.sh
Robert Bragg 6228082e14 conform: Make gtester run a list of wrappers
Instead of asking gtester to run ./test-conformance directly we now tell
it to run a list of wrapper scripts. This results in each test being
spawned in a separate process avoiding leakage of state between tests
which has been a big problem with the conformance tests for quite a
while now.
2010-05-07 17:17:59 +01:00

14 lines
197 B
Bash
Executable file

#!/bin/sh
BINARY=$1
shift
XML=$1
shift
TMP=`./$BINARY -l -m thorough | grep '^/' | sed -e s/_/-/g`
for i in $TMP
do
TESTS="$TESTS wrappers/`basename $i`"
done
exec gtester -o=$XML "$@" $TESTS