Added Ben Henning's GSoC2013 work: premake build system.
9 testsTotal=$(($testsTotal + 1))
10 if [ -d "tests/$1" ]; then
11 "xcodebuild" ARCHS=i386 ONLY_ACTIVE_ARCH=NO -workspace ./SDL.xcworkspace/ -scheme "$1"
13 testsFailed=$(($testsFailed + 1))
15 testsPassed=$(($testsPassed + 1))
17 echo "\033]0;Building: $1\007"
19 testsSkipped=$(($testsSkipped + 1))
23 # change to directory above command file
26 # build all of the tests
27 for d in ./tests/*; do
31 echo "Build Summary: Total=$testsTotal Passed=$testsPassed Failed=$testsFailed Skipped=$testsSkipped"