diff options
author | Sam Clegg <sbc@chromium.org> | 2019-06-29 01:53:26 +0000 |
---|---|---|
committer | Sam Clegg <sbc@chromium.org> | 2019-06-29 01:53:26 +0000 |
commit | b72664fd21cc1e25cd8420eb37eae3a701976394 (patch) | |
tree | 96ec573d8117ac4a6df15c1229a99aa26fb20b8f /llvm/test/tools/llvm-ar | |
parent | 765eba38c8d339302611598d7700c6fa9ff91d54 (diff) | |
download | bcm5719-llvm-b72664fd21cc1e25cd8420eb37eae3a701976394.tar.gz bcm5719-llvm-b72664fd21cc1e25cd8420eb37eae3a701976394.zip |
Partial revert of "[llvm-ar] Document response file support in --help"
This is partial revert of 70a8027c60fe1f95e8a8a1ff6575ebf8778d3544.
The test apparently failed on win32 bots due to the way slashes in
pathnames are handled.
llvm-svn: 364705
Diffstat (limited to 'llvm/test/tools/llvm-ar')
-rw-r--r-- | llvm/test/tools/llvm-ar/response-file.test | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/test/tools/llvm-ar/response-file.test b/llvm/test/tools/llvm-ar/response-file.test deleted file mode 100644 index 9e248d6b1c7..00000000000 --- a/llvm/test/tools/llvm-ar/response-file.test +++ /dev/null @@ -1,9 +0,0 @@ -RUN: touch %t-a.txt %t-b.txt %t-c.txt -RUN: echo "rcs %t.a %t-a.txt %t-b.txt %t-c.txt" > %t-response -RUN: rm -f %t.a -RUN: llvm-ar @%t-response -RUN: llvm-ar t %t.a | FileCheck %s - -CHECK: a.txt -CHECK-NEXT: b.txt -CHECK-NEXT: c.txt |