[clang-tools-extra] 1c66d09 - [clangd] Add fno-delayed-parsing to new define inline tests

Kadir Cetinkaya via cfe-commits cfe-commits at lists.llvm.org
Thu Oct 31 05:23:00 PDT 2019


Author: Kadir Cetinkaya
Date: 2019-10-31T13:22:52+01:00
New Revision: 1c66d09b739a8d9717ba4e9507649bc45ddf7f0d

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

LOG: [clangd] Add fno-delayed-parsing to new define inline tests

To unbreak windows buildbots.

Added: 
    

Modified: 
    clang-tools-extra/clangd/unittests/TweakTests.cpp

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/clangd/unittests/TweakTests.cpp b/clang-tools-extra/clangd/unittests/TweakTests.cpp
index 126aab61ada5..5a6df2e03e67 100644
--- a/clang-tools-extra/clangd/unittests/TweakTests.cpp
+++ b/clang-tools-extra/clangd/unittests/TweakTests.cpp
@@ -1529,6 +1529,7 @@ est);
         void foo(PARAM, TYPE b, TYPE c, TYPE d = BODY(x)){}
         )cpp"},
   };
+  ExtraArgs.push_back("-fno-delayed-template-parsing");
   for (const auto &Case : Cases)
     EXPECT_EQ(apply(Case.first), Case.second) << Case.first;
 }
@@ -1559,6 +1560,7 @@ TEST_F(DefineInlineTest, TransformTemplParamNames) {
     };
 
     )cpp";
+  ExtraArgs.push_back("-fno-delayed-template-parsing");
   EXPECT_EQ(apply(Test), Expected);
 }
 


        


More information about the cfe-commits mailing list