mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-12 03:10:03 +00:00
[libc++][print] Make <print>
tests require file system support.
`print` functions require `FILE` and `stdout` to be available and cause compilation errors on platforms that don't support the file system. Differential Revision: https://reviews.llvm.org/D156585
This commit is contained in:
parent
000d2b8582
commit
1cf970db4e
@ -1,4 +1,5 @@
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
||||
// UNSUPPORTED: no-filesystem
|
||||
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
|
||||
|
||||
// XFAIL: msvc, target={{.+}}-windows-gnu
|
||||
|
@ -6,6 +6,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
||||
// UNSUPPORTED: no-filesystem
|
||||
// UNSUPPORTED: executor-has-no-bash
|
||||
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
||||
// UNSUPPORTED: no-filesystem
|
||||
// UNSUPPORTED: executor-has-no-bash
|
||||
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
||||
// UNSUPPORTED: no-filesystem
|
||||
// UNSUPPORTED: executor-has-no-bash
|
||||
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
|
||||
|
||||
|
@ -6,6 +6,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// UNSUPPORTED: c++03, c++11, c++14, c++17, c++20
|
||||
// UNSUPPORTED: no-filesystem
|
||||
// UNSUPPORTED: executor-has-no-bash
|
||||
// UNSUPPORTED: GCC-ALWAYS_INLINE-FIXME
|
||||
|
||||
|
@ -11,6 +11,8 @@
|
||||
//
|
||||
// clang-format off
|
||||
|
||||
// UNSUPPORTED: no-filesystem
|
||||
|
||||
// <print>
|
||||
|
||||
// Test the feature test macros defined by <print>
|
||||
|
@ -1179,6 +1179,7 @@ lit_markup = {
|
||||
"locale": ["UNSUPPORTED: no-localization"],
|
||||
"mutex": ["UNSUPPORTED: no-threads"],
|
||||
"ostream": ["UNSUPPORTED: no-localization"],
|
||||
"print": ["UNSUPPORTED: no-filesystem"],
|
||||
"regex": ["UNSUPPORTED: no-localization"],
|
||||
"semaphore": ["UNSUPPORTED: no-threads"],
|
||||
"shared_mutex": ["UNSUPPORTED: no-threads"],
|
||||
|
@ -45,7 +45,7 @@ lit_header_restrictions = {
|
||||
"locale.h": "// UNSUPPORTED: no-localization",
|
||||
"mutex": "// UNSUPPORTED: no-threads, c++03",
|
||||
"ostream": "// UNSUPPORTED: no-localization",
|
||||
"print": "// UNSUPPORTED: availability-fp_to_chars-missing", # TODO PRINT investigate
|
||||
"print": "// UNSUPPORTED: no-filesystem, c++03, c++11, c++14, c++17, c++20, availability-fp_to_chars-missing", # TODO PRINT investigate
|
||||
"regex": "// UNSUPPORTED: no-localization",
|
||||
"semaphore": "// UNSUPPORTED: no-threads, c++03, c++11, c++14, c++17",
|
||||
"shared_mutex": "// UNSUPPORTED: no-threads, c++03, c++11",
|
||||
|
Loading…
x
Reference in New Issue
Block a user