[compiler-rt] a200201 - [scudo] Fix wording for unsupported test reason. (#110716)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 1 11:26:04 PDT 2024
Author: Evgenii Stepanov
Date: 2024-10-01T11:26:01-07:00
New Revision: a20020192845c1b9461b2b34308f19aa444676b4
URL: https://github.com/llvm/llvm-project/commit/a20020192845c1b9461b2b34308f19aa444676b4
DIFF: https://github.com/llvm/llvm-project/commit/a20020192845c1b9461b2b34308f19aa444676b4.diff
LOG: [scudo] Fix wording for unsupported test reason. (#110716)
Added:
Modified:
compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp b/compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp
index 1fae6518653595..09093e11452ddd 100644
--- a/compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp
+++ b/compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp
@@ -19,7 +19,7 @@ namespace scudo {
TEST(MemtagBasicDeathTest, Unsupported) {
if (archSupportsMemoryTagging())
- TEST_SKIP("Memory tagging is not supported");
+ TEST_SKIP("Memory tagging is not unsupported");
// Skip when running with HWASan.
if (&__hwasan_init != 0)
TEST_SKIP("Incompatible with HWASan");
More information about the llvm-commits
mailing list