From b72664fd21cc1e25cd8420eb37eae3a701976394 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Sat, 29 Jun 2019 01:53:26 +0000 Subject: [PATCH] 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 --- llvm/test/tools/llvm-ar/response-file.test | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 llvm/test/tools/llvm-ar/response-file.test 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 9e248d6b1c7d..000000000000 --- 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