mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
It makes sense to just set this here since we aren't testing that functionality and enables us to test this if we aren't using one of the specified Xcodes (which can be useful).
16 lines
739 B
Plaintext
16 lines
739 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: Cleaning the llbuild build directory
|
|
# CLEAN-LLBUILD-CHECK-NEXT: rm -rf
|
|
|
|
# SKIP-CLEAN-LLBUILD-CHECK-NOT: Cleaning the llbuild build directory
|
|
# SKIP-CLEAN-LLBUILD-CHECK-NOT: rm -rf {{.*/llbuild-[^/]*}}
|