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