Added Ben Henning's GSoC2013 work: premake build system.
9 testsTotal=$(($testsTotal + 1))
10 if [ -d "tests/$1" ]; then
12 "xcodebuild" ARCHS=x86_64 ONLY_ACTIVE_ARCH=NO -project "$1.xcodeproj/"
14 testsFailed=$(($testsFailed + 1))
16 testsPassed=$(($testsPassed + 1))
19 echo "\033]0;Building: $1\007"
21 testsSkipped=$(($testsSkipped + 1))
25 # change to directory above command file
28 # build all of the tests
29 for d in ./tests/*; do
33 echo "Build Summary: Total=$testsTotal Passed=$testsPassed Failed=$testsFailed Skipped=$testsSkipped"