[libcxx-commits] [libcxx] 0df607c - Do not run gcount test on any *armv7l* (fixes test on llvm-clang-win-x-armv7l)
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sat May 20 03:05:02 PDT 2023
Author: Azat Khuzhin
Date: 2023-05-20T12:04:55+02:00
New Revision: 0df607ca96d8b0608e99d2a4dae7e137e5e8f02d
URL: https://github.com/llvm/llvm-project/commit/0df607ca96d8b0608e99d2a4dae7e137e5e8f02d
DIFF: https://github.com/llvm/llvm-project/commit/0df607ca96d8b0608e99d2a4dae7e137e5e8f02d.diff
LOG: Do not run gcount test on any *armv7l* (fixes test on llvm-clang-win-x-armv7l)
There was one buildbot (for llvm-clang-win-x-armv7l) that hadn't been
run for the initial revision [1].
[1]: https://lab.llvm.org/buildbot#builders/60/builds/12118
Reviewed By: #libc, ldionne
Differential Revision: https://reviews.llvm.org/D150886
Added:
Modified:
libcxx/test/std/input.output/string.streams/stringstream.members/gcount.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/input.output/string.streams/stringstream.members/gcount.pass.cpp b/libcxx/test/std/input.output/string.streams/stringstream.members/gcount.pass.cpp
index 7dbd68ec43730..a8d821e8e0407 100644
--- a/libcxx/test/std/input.output/string.streams/stringstream.members/gcount.pass.cpp
+++ b/libcxx/test/std/input.output/string.streams/stringstream.members/gcount.pass.cpp
@@ -9,8 +9,8 @@
// All 32 bit arches that CI has:
//
// UNSUPPORTED: target=powerpc-ibm-aix
-// UNSUPPORTED: target=armv7l-linux-gnueabihf
-// UNSUPPORTED: target=armv8l-linux-gnueabihf
+// UNSUPPORTED: target={{.*}}armv7l{{.*}}
+// UNSUPPORTED: target={{.*}}armv8l{{.*}}
// UNSUPPORTED: target=i686-w64-windows-gnu
// Test that tellp() does not break the stringstream after INT_MAX, due to use
More information about the libcxx-commits
mailing list