From: Russell Keith-Magee Date: Mon, 6 May 2024 03:58:14 +0000 (+0800) Subject: Set a DerivedData path for iOS test builds. (GH-118621) X-Git-Tag: v3.13.0b1~83 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1506d5adc457a806e85886018804483e808d85c5;p=thirdparty%2FPython%2Fcpython.git Set a DerivedData path for iOS test builds. (GH-118621) --- diff --git a/Makefile.pre.in b/Makefile.pre.in index ddc8b2feda51..88ec2009fbff 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2067,7 +2067,7 @@ testios: # Run the test suite for the Xcode project, targeting the iOS simulator. # If the suite fails, touch a file in the test folder as a marker - if ! xcodebuild test -project $(XCFOLDER)/iOSTestbed.xcodeproj -scheme "iOSTestbed" -destination "platform=iOS Simulator,name=iPhone SE (3rd Generation)" -resultBundlePath $(XCRESULT) ; then \ + if ! xcodebuild test -project $(XCFOLDER)/iOSTestbed.xcodeproj -scheme "iOSTestbed" -destination "platform=iOS Simulator,name=iPhone SE (3rd Generation)" -resultBundlePath $(XCRESULT) -derivedDataPath $(XCFOLDER)/DerivedData ; then \ touch $(XCFOLDER)/failed; \ fi