X-Git-Url: https://git.saurik.com/apple/dyld.git/blobdiff_plain/64db26dd8d8b4bbcbca664ab56354d7c038f0e6b..df9d6cf7fb01f4e3d4128fe7a687984fe0b45584:/unit-tests/run-all-unit-tests diff --git a/unit-tests/run-all-unit-tests b/unit-tests/run-all-unit-tests index d1df892..397178c 100755 --- a/unit-tests/run-all-unit-tests +++ b/unit-tests/run-all-unit-tests @@ -7,6 +7,8 @@ cd `echo "$0" | sed 's/run-all-unit-tests/test-cases/'` CRSTATE=`defaults read com.apple.CrashReporter DialogType` defaults write com.apple.CrashReporter DialogType basic +SDK=`xcodebuild -version -sdk macosx.internal Path` + # run test targeting different OS versions for OSVERSION in 10.9 10.8 10.7 10.6 10.5 10.4 do @@ -17,7 +19,7 @@ do ../bin/make-recursive.pl clean > /dev/null # build default architecture - ../bin/make-recursive.pl ARCH="i386" OS_VERSION=$OSVERSION OS_NAME=MacOSX | ../bin/result-filter.pl + ../bin/make-recursive.pl ARCH="i386" OS_VERSION=$OSVERSION OS_NAME=MacOSX OSX_SDK_ROOT=${SDK} | ../bin/result-filter.pl # if 64-bit capable Intel, then also run all test cases for 64-bits if [ `sysctl -n hw.optional.x86_64` = "1" ] @@ -29,7 +31,7 @@ do ../bin/make-recursive.pl clean > /dev/null # build x86_64 architecture - ../bin/make-recursive.pl ARCH="x86_64" OS_VERSION=$OSVERSION OS_NAME=MacOSX | ../bin/result-filter.pl + ../bin/make-recursive.pl ARCH="x86_64" OS_VERSION=$OSVERSION OS_NAME=MacOSX OSX_SDK_ROOT=${SDK} | ../bin/result-filter.pl fi done