Skip to content

Commit dc716a2

Browse files
authored
Merge pull request swiftlang#27952 from davezarzycki/pr27952
Disable build system test that assumes standalone build
2 parents 598a541 + 4097282 commit dc716a2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

test/lit.site.cfg.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,9 @@ if "@SWIFT_HAVE_WORKING_STD_REGEX@" == "FALSE":
9191
if "@SWIFT_ENABLE_RUNTIME_FUNCTION_COUNTERS@" == "TRUE":
9292
config.available_features.add('runtime_function_counters')
9393

94+
if "@SWIFT_BUILT_STANDALONE@" == "TRUE":
95+
config.available_features.add('standalone_build')
96+
9497
if "@CMAKE_GENERATOR@" == "Xcode":
9598
xcode_bin_dir = os.path.join(config.llvm_obj_root, "@LLVM_BUILD_TYPE@",
9699
'bin')

validation-test/BuildSystem/skip-local-build.test-sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# REQUIRES: standalone_build
2+
#
13
# RUN: %swift_src_root/utils/build-script --dump-config --skip-local-build 2>&1 | %FileCheck %s -check-prefix=CONFIG
24
# CONFIG: "skip_local_build": true
35

0 commit comments

Comments
 (0)