Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove capitalization from the testios target.
  • Loading branch information
freakboy3742 committed Feb 28, 2024
commit cdf5df9c9e0ba86a31a1f4d1bfd3f6816fa45e90
4 changes: 2 additions & 2 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1999,8 +1999,8 @@ testuniversal: all
# (3rd edition) simulator available, after running `make install` on a configuration
# with --enable-framework="./iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator"
XCRESULT=$(srcdir)/build/$(MULTIARCH).$(shell date +%s).xcresult
.PHONY: testiOS
testiOS:
.PHONY: testios
testios:
# Run the test suite for the Xcode project, targeting the iOS simulator.
# If the suite fails, extract and print the console output, then re-raise the failure
if ! xcodebuild test -project $(srcdir)/iOS/testbed/iOSTestbed.xcodeproj -scheme "iOSTestbed" -destination "platform=iOS Simulator,name=iPhone SE (3rd Generation)" -resultBundlePath $(XCRESULT) ; then \
Expand Down
2 changes: 1 addition & 1 deletion iOS/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ To run the test suite, configure a Python build for an iOS simulator (i.e.,

--enable-framework="$(pwd)/iOS/testbed/Python.xcframework/ios-arm64_x86_64-simulator"

Then run ``make all install testiOS``. This will build an iOS framework for your
Then run ``make all install testios``. This will build an iOS framework for your
chosen architecture, install the Python iOS framework into the testbed project,
and run the test suite on an "iPhone SE (3rd generation)" simulator.

Expand Down