14 lines · plain
1# Executable testing is not supported on Windows, since all files are considered executable2# UNSUPPORTED: system-windows3# RUN: yaml2obj %p/Inputs/i386-slice.yaml -o %t-i386.o4# RUN: yaml2obj %p/Inputs/x86_64-slice.yaml -o %t-x86_64.o5 6# RUN: chmod a-x %t-i386.o7# RUN: chmod a-x %t-x86_64.o8# RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o9# RUN: test ! -x %t-universal.o10 11# RUN: chmod a+x %t-i386.o12# RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o13# RUN: test -x %t-universal.o14