Adding the start of the instruction test infrastructure.

This commit is contained in:
Ben Vanik
2013-01-27 02:51:53 -08:00
parent e37821cf36
commit 26d5df0d38
11 changed files with 402 additions and 0 deletions

16
bin/xenia-test Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/sh
DIR="$( cd "$( dirname "$0" )" && pwd )"
CONFIG=release
case "$*" in
(*--debug*) CONFIG=debug;;
esac
EXEC=$DIR/../build/xenia/$CONFIG/xenia-test
if [ ! -f "$EXEC" ]; then
python $DIR/../xenia-build.py build --$CONFIG
fi
$EXEC "$@"