]>
Commit | Line | Data |
---|---|---|
1 | #!/bin/sh | |
2 | ||
3 | # cd into test-cases directory | |
4 | cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'` | |
5 | ||
6 | # save crash reporter state | |
7 | CRSTATE=`defaults read com.apple.CrashReporter DialogType` | |
8 | defaults write com.apple.CrashReporter DialogType basic | |
9 | ||
10 | SDK=`xcodebuild -version -sdk macosx.internal Path` | |
11 | ||
12 | # run test targeting different OS versions | |
13 | for OSVERSION in 10.9 10.8 10.7 10.6 10.5 10.4 | |
14 | do | |
15 | echo "" | |
16 | echo " * * * Running all unit tests i386 built for $OSVERSION * * *" | |
17 | ||
18 | # make clean | |
19 | ../bin/make-recursive.pl clean > /dev/null | |
20 | ||
21 | # build default architecture | |
22 | ../bin/make-recursive.pl ARCH="i386" OS_VERSION=$OSVERSION OS_NAME=MacOSX OSX_SDK_ROOT=${SDK} | ../bin/result-filter.pl | |
23 | ||
24 | # if 64-bit capable Intel, then also run all test cases for 64-bits | |
25 | if [ `sysctl -n hw.optional.x86_64` = "1" ] | |
26 | then | |
27 | echo "" | |
28 | echo " * * * Running all unit tests x86_64 built for $OSVERSION * * *" | |
29 | ||
30 | # make clean | |
31 | ../bin/make-recursive.pl clean > /dev/null | |
32 | ||
33 | # build x86_64 architecture | |
34 | ../bin/make-recursive.pl ARCH="x86_64" OS_VERSION=$OSVERSION OS_NAME=MacOSX OSX_SDK_ROOT=${SDK} | ../bin/result-filter.pl | |
35 | fi | |
36 | ||
37 | done | |
38 | ||
39 | # restore crash reporter state | |
40 | defaults write com.apple.CrashReporter DialogType ${CRSTATE} | |
41 | ||
42 |