Skip to content

Commit 1534925

Browse files
committed
Relax FileCheck directives for skip_clean_llbuild.test
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
1 parent e120a82 commit 1534925

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

validation-test/BuildSystem/skip_clean_llbuild.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# RUN: mkdir -p %t
99
# 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
1010

11-
# CLEAN-LLBUILD-CHECK: Cleaning the llbuild build directory
12-
# CLEAN-LLBUILD-CHECK-NEXT: rm -rf
11+
# CLEAN-LLBUILD-CHECK-DAG: Cleaning the llbuild build directory
12+
# CLEAN-LLBUILD-CHECK: rm -rf
1313

1414
# SKIP-CLEAN-LLBUILD-CHECK-NOT: Cleaning the llbuild build directory
1515
# SKIP-CLEAN-LLBUILD-CHECK-NOT: rm -rf {{.*/llbuild-[^/]*}}

0 commit comments

Comments
 (0)