summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--clang-tools-extra/test/clang-tidy/bugprone-branch-clone.cpp2
-rw-r--r--clang-tools-extra/test/clang-tidy/bugprone-unhandled-self-assignment.cpp2
-rw-r--r--clang-tools-extra/test/clang-tidy/cppcoreguidelines-init-variables.cpp2
-rw-r--r--clang-tools-extra/test/clang-tidy/misc-redundant-expression.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/clang-tools-extra/test/clang-tidy/bugprone-branch-clone.cpp b/clang-tools-extra/test/clang-tidy/bugprone-branch-clone.cpp
index d8b8870b9b4..af16f510555 100644
--- a/clang-tools-extra/test/clang-tidy/bugprone-branch-clone.cpp
+++ b/clang-tools-extra/test/clang-tidy/bugprone-branch-clone.cpp
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s bugprone-branch-clone %t
+// RUN: %check_clang_tidy %s bugprone-branch-clone %t -- -- -fno-delayed-template-parsing
void test_basic1(int in, int &out) {
if (in > 77)
diff --git a/clang-tools-extra/test/clang-tidy/bugprone-unhandled-self-assignment.cpp b/clang-tools-extra/test/clang-tidy/bugprone-unhandled-self-assignment.cpp
index c2385d039b4..49bb5314f9e 100644
--- a/clang-tools-extra/test/clang-tidy/bugprone-unhandled-self-assignment.cpp
+++ b/clang-tools-extra/test/clang-tidy/bugprone-unhandled-self-assignment.cpp
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s bugprone-unhandled-self-assignment %t
+// RUN: %check_clang_tidy %s bugprone-unhandled-self-assignment %t -- -- -fno-delayed-template-parsing
namespace std {
diff --git a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-init-variables.cpp b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-init-variables.cpp
index 893c1d28779..d43e44808a4 100644
--- a/clang-tools-extra/test/clang-tidy/cppcoreguidelines-init-variables.cpp
+++ b/clang-tools-extra/test/clang-tidy/cppcoreguidelines-init-variables.cpp
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s cppcoreguidelines-init-variables %t
+// RUN: %check_clang_tidy %s cppcoreguidelines-init-variables %t -- -- -fno-delayed-template-parsing
// Ensure that function declarations are not changed.
void some_func(int x, double d, bool b, const char *p);
diff --git a/clang-tools-extra/test/clang-tidy/misc-redundant-expression.cpp b/clang-tools-extra/test/clang-tidy/misc-redundant-expression.cpp
index 35a0f407b27..f6b47eb79fb 100644
--- a/clang-tools-extra/test/clang-tidy/misc-redundant-expression.cpp
+++ b/clang-tools-extra/test/clang-tidy/misc-redundant-expression.cpp
@@ -1,4 +1,4 @@
-// RUN: %check_clang_tidy %s misc-redundant-expression %t
+// RUN: %check_clang_tidy %s misc-redundant-expression %t -- -- -fno-delayed-template-parsing
typedef __INT64_TYPE__ I64;
OpenPOWER on IntegriCloud