[llvm] d756603 - [ORC] Fix typo in unit test.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 9 16:14:26 PST 2022


Author: Lang Hames
Date: 2022-11-09T16:12:41-08:00
New Revision: d7566030d6c963f94075a20416b130a47d191c4a

URL: https://github.com/llvm/llvm-project/commit/d7566030d6c963f94075a20416b130a47d191c4a
DIFF: https://github.com/llvm/llvm-project/commit/d7566030d6c963f94075a20416b130a47d191c4a.diff

LOG: [ORC] Fix typo in unit test.

Added: 
    

Modified: 
    llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp b/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp
index aab465a31257e..32475703c6b75 100644
--- a/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp
@@ -26,7 +26,7 @@ TEST(SymbolStringPool, UniquingAndComparisons) {
   auto P3 = SP.intern("goodbye");
 
   EXPECT_EQ(P1, P2) << "Failed to unique entries";
-  EXPECT_NE(P1, P3) << "Inequal pooled symbol strings comparing equal";
+  EXPECT_NE(P1, P3) << "Unequal pooled symbol strings comparing equal";
 
   // We want to test that less-than comparison of SymbolStringPtrs compiles,
   // however we can't test the actual result as this is a pointer comparison and


        


More information about the llvm-commits mailing list