diff options
author | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
---|---|---|
committer | Manuel Klimek <klimek@google.com> | 2015-10-22 14:54:50 +0000 |
commit | 8f9e44406165c1f57e0b28ba159cace972220921 (patch) | |
tree | dadfa84f9f52079b918ef2959b483523aa85c24e /clang-tools-extra/test/clang-tidy/misc-static-assert.c | |
parent | 5884a1f5a61d0dbb62cc2916d14d659dd8f28fcd (diff) | |
download | bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.tar.gz bcm5719-llvm-8f9e44406165c1f57e0b28ba159cace972220921.zip |
Switch check_clang_tidy to argparse and add a -resource-dir argument.
-resource-dir can be used to inject non-standard resource dirs via the
lit site config.
llvm-svn: 251021
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/misc-static-assert.c')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/misc-static-assert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/misc-static-assert.c b/clang-tools-extra/test/clang-tidy/misc-static-assert.c index 86738c918f6..0fca94583cf 100644 --- a/clang-tools-extra/test/clang-tidy/misc-static-assert.c +++ b/clang-tools-extra/test/clang-tidy/misc-static-assert.c @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s misc-static-assert %t -- -std=c11
+// RUN: %check_clang_tidy %s misc-static-assert %t -- -- -std=c11
// RUN: clang-tidy %s -checks=-*,misc-static-assert -- -std=c99 | count 0
void abort() {}
|