forked from OSchip/llvm-project
Attempt to fix a few clang-tidy tests on Windows, see PR43593.
llvm-svn: 373951
This commit is contained in:
parent
6bdfe3aeba
commit
0db7b6a44c
|
@ -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)
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue