[llvm] 6477945 - Revert "[YAML][NFC] precommit wrong test case (#131782)"

Martin Storsjö via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 25 01:38:58 PDT 2025


Author: Martin Storsjö
Date: 2025-03-25T10:36:14+02:00
New Revision: 64779455b8f4875c7de690dd4c3e324dbbcb3029

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

LOG: Revert "[YAML][NFC] precommit wrong test case (#131782)"

This reverts commit cb4ae35de0b4c19149379f16c7b279d80a669f9d.

That commit broke compilation with GCC:

../unittests/Support/YAMLIOTest.cpp:1280:20: error: explicit specialization of
template<class T> struct llvm::yaml::MappingTraits’ outside its namespace must u
se a nested-name-specifier [-fpermissive]
 1280 | template <> struct MappingTraits<V> {
      |                    ^~~~~~~~~~~~~~~~

Added: 
    

Modified: 
    llvm/unittests/Support/YAMLIOTest.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/unittests/Support/YAMLIOTest.cpp b/llvm/unittests/Support/YAMLIOTest.cpp
index 3db1db57ad596..c0e9c57a77f19 100644
--- a/llvm/unittests/Support/YAMLIOTest.cpp
+++ b/llvm/unittests/Support/YAMLIOTest.cpp
@@ -1273,36 +1273,6 @@ TEST(YAMLIO, TestReadWriteBlockScalarValue) {
   }
 }
 
-struct V {
-  MultilineStringType doc;
-  std::string str;
-};
-template <> struct MappingTraits<V> {
-  static void mapping(IO &io, V &v) {
-    io.mapRequired("block_scalac", v.doc);
-    io.mapRequired("scalar", v.str);
-  }
-};
-template <> struct llvm::yaml::SequenceElementTraits<V> {
-  static const bool flow = false;
-};
-TEST(YAMLIO, TestScalarAfterBlockScalar) {
-  std::vector<V> v{V{}};
-  v[0].doc.str = "AA\nBB";
-  v[0].str = "a";
-  std::string output;
-  llvm::raw_string_ostream ostr(output);
-  Output yout(ostr);
-  yout << v;
-  EXPECT_EQ(output, R"(---
-- block_scalac:     |
-    AA
-    BB
-scalar:          a
-...
-)");
-}
-
 //===----------------------------------------------------------------------===//
 //  Test flow sequences
 //===----------------------------------------------------------------------===//


        


More information about the llvm-commits mailing list