mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This is needed short term to allow the test to pass when running on Python 3.11 and later and avoid errors like ``` <stdin>:44:1: note: non-matching line after previous match is here <string>:1: DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13 ^ ``` Long term we want to replace uses of the obsolete `pipes.quotes` function with `shlex.quotes`. Addresses rdar://109664710
16 lines
738 B
Plaintext
16 lines
738 B
Plaintext
# REQUIRES: standalone_build
|
|
|
|
# RUN: %empty-directory(%t)
|
|
# RUN: mkdir -p %t
|
|
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t %swift_src_root/utils/build-script --dry-run --llbuild --cmake %cmake 2>&1 | %FileCheck --check-prefix=CLEAN-LLBUILD-CHECK %s
|
|
|
|
# RUN: %empty-directory(%t)
|
|
# RUN: mkdir -p %t
|
|
# RUN: SKIP_XCODE_VERSION_CHECK=1 SWIFT_BUILD_ROOT=%t %swift_src_root/utils/build-script --dry-run --llbuild --skip-clean-llbuild --cmake %cmake 2>&1 | %FileCheck --check-prefix=SKIP-CLEAN-LLBUILD-CHECK %s
|
|
|
|
# CLEAN-LLBUILD-CHECK-DAG: Cleaning the llbuild build directory
|
|
# CLEAN-LLBUILD-CHECK: rm -rf
|
|
|
|
# SKIP-CLEAN-LLBUILD-CHECK-NOT: Cleaning the llbuild build directory
|
|
# SKIP-CLEAN-LLBUILD-CHECK-NOT: rm -rf {{.*/llbuild-[^/]*}}
|