Author: Corentin Jabot
Date: 2026-07-06T15:54:50Z
New Revision: d3d3fdd940d714af2ac060b9f3da3ed32bdbaa05

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

LOG: Disable test not supported on MSVC (#207752)

Fixes an Incorrectly applied merge conflict resolution after landing
#206990

Added: 
    

Modified: 
    clang/unittests/Basic/DiagnosticTest.cpp

Removed: 
    


################################################################################
diff  --git a/clang/unittests/Basic/DiagnosticTest.cpp 
b/clang/unittests/Basic/DiagnosticTest.cpp
index 986eb058ece07..13553491397f2 100644
--- a/clang/unittests/Basic/DiagnosticTest.cpp
+++ b/clang/unittests/Basic/DiagnosticTest.cpp
@@ -452,7 +452,7 @@ TEST_F(SuppressionMappingTest, 
CanonicalizesSlashesOnWindows) {
 TEST(EscapeSingleCodepointForDiagnosticTest, printableDisplaysQuoted) {
   EXPECT_EQ(EscapeSingleCodepointForDiagnostic(U'A'), "'A'");
   // This test fails when msvc is not using /utf-8.
-  EXPECT_EQ(EscapeSingleCodepointForDiagnostic(U'🤡'), "'🤡' U+1F921");
+  // EXPECT_EQ(EscapeSingleCodepointForDiagnostic(U'🤡'), "'🤡' U+1F921");
   EXPECT_EQ(EscapeSingleCodepointForDiagnostic(U' '), "' '");
 }
 


        
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to