Skip to content

Commit d17a248

Browse files
[libcxx][test] Correct syntax of lit directives in some tests (#146886)
"XFAIL " does not do anything, you need to have the colon afterwards. "XFAIL: ". Found by searching for: (XFAIL|REQUIRES|UNSUPPORTED)[^:]
1 parent 4a6d78e commit d17a248

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

libcxx/test/libcxx/input.output/iostreams.base/ios.base/ios.base.cons/dtor.uninitialized.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
// The fix for issue 57964 requires an updated dylib due to explicit
1515
// instantiations. That means Apple backdeployment targets remain broken.
16-
// XFAIL using-built-library-before-llvm-19
16+
// XFAIL: using-built-library-before-llvm-19
1717

1818
// <ios>
1919

libcxx/test/std/input.output/file.streams/fstreams/filebuf.virtuals/setbuf.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
// This test requires the fix to https://github.com/llvm/llvm-project/issues/60509 in the dylib,
1717
// which landed in 5afb937d8a30445642ccaf33866ee4cdd0713222.
18-
// XFAIL using-built-library-before-llvm-19
18+
// XFAIL: using-built-library-before-llvm-19
1919

2020
#include <fstream>
2121
#include <cstddef>

libcxx/test/std/input.output/iostream.format/input.streams/istream.unformatted/sync.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// The fix for bug 51497 and bug 51499 require and updated dylib due to
1717
// explicit instantiations. That means Apple backdeployment targets remain
1818
// broken.
19-
// XFAIL using-built-library-before-llvm-19
19+
// XFAIL: using-built-library-before-llvm-19
2020

2121
#include <istream>
2222
#include <cassert>

libcxx/test/std/localization/locale.categories/category.monetary/locale.money.get/locale.money.get.members/get_long_double_fr_FR.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// TODO(mordante) Investigate
1010
// UNSUPPORTED: apple-clang
1111

12-
// XFAIL darwin
12+
// XFAIL: darwin
1313

1414
// NetBSD does not support LC_MONETARY at the moment
1515
// XFAIL: netbsd

libcxx/test/std/localization/locale.categories/category.monetary/locale.money.put/locale.money.put.members/put_long_double_fr_FR.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// TODO(mordante) Investigate
1010
// UNSUPPORTED: apple-clang
1111

12-
// XFAIL darwin
12+
// XFAIL: darwin
1313

1414
// NetBSD does not support LC_MONETARY at the moment
1515
// XFAIL: netbsd

libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/grouping.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// TODO(mordante) Investigate
1010
// UNSUPPORTED: apple-clang
1111

12-
// XFAIL darwin
12+
// XFAIL: darwin
1313
//
1414
// NetBSD does not support LC_MONETARY at the moment
1515
// XFAIL: netbsd

libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_double.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
// The fix for LWG2381 (https://github.com/llvm/llvm-project/pull/77948) changed behavior of
1313
// FP parsing. This requires 3e15c97fa3812993bdc319827a5c6d867b765ae8 in the dylib.
14-
// XFAIL using-built-library-before-llvm-19
14+
// XFAIL: using-built-library-before-llvm-19
1515

1616
// <locale>
1717

libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_float.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
// The fix for LWG2381 (https://github.com/llvm/llvm-project/pull/77948) changed behavior of
1313
// FP parsing. This requires 3e15c97fa3812993bdc319827a5c6d867b765ae8 in the dylib.
14-
// XFAIL using-built-library-before-llvm-19
14+
// XFAIL: using-built-library-before-llvm-19
1515

1616
// <locale>
1717

libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/get_long_double.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
// The fix for LWG2381 (https://github.com/llvm/llvm-project/pull/77948) changed behavior of
1313
// FP parsing. This requires 3e15c97fa3812993bdc319827a5c6d867b765ae8 in the dylib.
14-
// XFAIL using-built-library-before-llvm-19
14+
// XFAIL: using-built-library-before-llvm-19
1515

1616
// <locale>
1717

0 commit comments

Comments
 (0)