mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
d68dfedd72
To improve consistency and avoid unneeded shell feature (output redirection). While here, make other changes to improve consistency --docnum 1 => --docnum=1 -docnum=x => --docnum=x
14 lines
523 B
Plaintext
14 lines
523 B
Plaintext
# Executable testing is not supported on Windows, since all files are considered executable
|
|
# UNSUPPORTED: system-windows
|
|
# RUN: yaml2obj %p/Inputs/i386-slice.yaml -o %t-i386.o
|
|
# RUN: yaml2obj %p/Inputs/x86_64-slice.yaml -o %t-x86_64.o
|
|
|
|
# RUN: chmod a-x %t-i386.o
|
|
# RUN: chmod a-x %t-x86_64.o
|
|
# RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
|
|
# RUN: test ! -x %t-universal.o
|
|
|
|
# RUN: chmod a+x %t-i386.o
|
|
# RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
|
|
# RUN: test -x %t-universal.o
|