1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Write to a temporary file in test instead of random file in the test directory.

llvm-svn: 295815
This commit is contained in:
Benjamin Kramer 2017-02-22 09:02:27 +00:00
parent 2059a627c4
commit 5f05e35412

View File

@ -5,15 +5,15 @@ RUN: echo foo > %t.o
RUN: rm -f %t.a
RUN: llvm-ar -format=bsd rc %t.a %t.o
RUN: llvm-ar p %t.a > %bsd.o
RUN: cmp %bsd.o %t.o
RUN: llvm-ar p %t.a > %t.bsd.o
RUN: cmp %t.bsd.o %t.o
RUN: rm -f %t.a
RUN: llvm-ar -format=gnu rc %t.a %t.o
RUN: llvm-ar p %t.a > %gnu.o
RUN: cmp %gnu.o %t.o
RUN: llvm-ar p %t.a > %t.gnu.o
RUN: cmp %t.gnu.o %t.o
RUN: rm -f %t.a
RUN: llvm-ar -format=darwin rc %t.a %t.o
RUN: llvm-ar p %t.a > %darwin.o
RUN: not cmp %darwin.o %t.o
RUN: llvm-ar p %t.a > %t.darwin.o
RUN: not cmp %t.darwin.o %t.o