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

llvm-svn: 373951
This commit is contained in:
Nico Weber 2019-10-07 19:54:19 +00:00
parent 6bdfe3aeba
commit 0db7b6a44c
4 changed files with 4 additions and 4 deletions

View File

@ -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)

View File

@ -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 {

View File

@ -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);

View File

@ -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;