diff options
author | Haojian Wu <hokein@google.com> | 2017-02-28 09:03:07 +0000 |
---|---|---|
committer | Haojian Wu <hokein@google.com> | 2017-02-28 09:03:07 +0000 |
commit | 44038f176b6698dbd39a2b43a8da270af7852820 (patch) | |
tree | 8d52ca8c8da94729fde5ef69d7aaa547dd326f78 | |
parent | 8598b17076fed07747e9818b968ac9b4812d1def (diff) | |
download | bcm5719-llvm-44038f176b6698dbd39a2b43a8da270af7852820.tar.gz bcm5719-llvm-44038f176b6698dbd39a2b43a8da270af7852820.zip |
[clang-format] Fix test failure caused by "rm" on some buildbots.
The begining command "rm" will return 1 when there is not such file to
delete.
This patch is to remove it, as it's not needed for the test.
llvm-svn: 296453
-rw-r--r-- | clang/test/Format/inplace.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/Format/inplace.cpp b/clang/test/Format/inplace.cpp index cc218f31187..aad1fad10d3 100644 --- a/clang/test/Format/inplace.cpp +++ b/clang/test/Format/inplace.cpp @@ -1,6 +1,5 @@ // Regression test to check that clang-format does not leave behind temporary // files on Windows when doing in-place formatting. -// RUN: rm %T/inplace* // RUN: cp %s %T/inplace.cpp // RUN: clang-format -style=LLVM -i %T/inplace.cpp // RUN: ls %T > %T/files.txt |