diff options
author | Jonas Toth <jonas.toth@gmail.com> | 2017-10-03 16:53:56 +0000 |
---|---|---|
committer | Jonas Toth <jonas.toth@gmail.com> | 2017-10-03 16:53:56 +0000 |
commit | 491b6b5490711a91728dede600236936d2164702 (patch) | |
tree | 8260cf829c235e1f18ae8146207731c05b408ae3 | |
parent | df7e83ea5c98be1cf99dd4b87665a94999b445ca (diff) | |
download | bcm5719-llvm-491b6b5490711a91728dede600236936d2164702.tar.gz bcm5719-llvm-491b6b5490711a91728dede600236936d2164702.zip |
[clang-tidy] potentially fix buildbot
I tried to silence lit with `| count 0`, which did not work.
Other testcases did not have `-- --` but only `--` in the RUN line.
Maybe this fixes the problem.
llvm-svn: 314812
-rw-r--r-- | clang-tools-extra/test/clang-tidy/hicpp-signed-bitwise-bug34747.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/hicpp-signed-bitwise-bug34747.cpp b/clang-tools-extra/test/clang-tidy/hicpp-signed-bitwise-bug34747.cpp index bf93566afbc..291ea8dc993 100644 --- a/clang-tools-extra/test/clang-tidy/hicpp-signed-bitwise-bug34747.cpp +++ b/clang-tools-extra/test/clang-tidy/hicpp-signed-bitwise-bug34747.cpp @@ -1,4 +1,4 @@ -// RUN: %check_clang_tidy %s hicpp-signed-bitwise %t -- -- -std=c++11 | count 0 +// RUN: %check_clang_tidy %s hicpp-signed-bitwise %t -- | count 0 // Note: this test expects no diagnostics, but FileCheck cannot handle that, // hence the use of | count 0. |