[compiler-rt] [scudo] Fix wording for unsupported test reason. (PR #110716)

Evgenii Stepanov via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 1 11:14:09 PDT 2024


https://github.com/eugenis created https://github.com/llvm/llvm-project/pull/110716

None

>From e280c1791aa911f0db68262717549942254d7b79 Mon Sep 17 00:00:00 2001
From: Evgenii Stepanov <eugenis at google.com>
Date: Tue, 1 Oct 2024 11:12:22 -0700
Subject: [PATCH] [scudo] Fix wording for unsupported test reason.

---
 compiler-rt/lib/scudo/standalone/tests/memtag_test.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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