Attempt to fix a few clang-tidy tests on Windows, see PR43593.

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@373951 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/clang-tidy/bugprone-branch-clone.cpp b/test/clang-tidy/bugprone-branch-clone.cpp
index d8b8870..af16f51 100644
--- a/test/clang-tidy/bugprone-branch-clone.cpp
+++ b/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/test/clang-tidy/bugprone-unhandled-self-assignment.cpp b/test/clang-tidy/bugprone-unhandled-self-assignment.cpp
index c2385d0..49bb531 100644
--- a/test/clang-tidy/bugprone-unhandled-self-assignment.cpp
+++ b/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/test/clang-tidy/cppcoreguidelines-init-variables.cpp b/test/clang-tidy/cppcoreguidelines-init-variables.cpp
index 893c1d2..d43e448 100644
--- a/test/clang-tidy/cppcoreguidelines-init-variables.cpp
+++ b/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/test/clang-tidy/misc-redundant-expression.cpp b/test/clang-tidy/misc-redundant-expression.cpp
index 35a0f40..f6b47eb 100644
--- a/test/clang-tidy/misc-redundant-expression.cpp
+++ b/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;