1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Try to get ResponseFile.ll passing on Windows after r267556.

llvm-svn: 267599
This commit is contained in:
Nico Weber 2016-04-26 20:32:51 +00:00
parent 941602e770
commit a8ed675976

View File

@ -1,8 +1,10 @@
; Test that we can recurse, at least a little bit. The -time-passes flag here
; is a hack to make sure that neither echo nor the shell expands the response
; file for us. Tokenization with quotes is tested in unittests.
; RUN: echo %s > %t.list1
; RUN: echo "-time-passes @%t.list1" > %t.list2
; On Windows, paths contain \ characters, which are escape characters in
; GNU-style response files. So replace \ with \\ to make the tests work there.
; RUN: echo %s | sed -e 's:\\:\\\\:g' > %t.list1
; RUN: echo "-time-passes @%t.list1" | sed -e 's:\\:\\\\:g' > %t.list2
; RUN: llvm-as @%t.list2 -o %t.bc
; RUN: llvm-nm %t.bc 2>&1 | FileCheck %s