[InstCombine] Remove insertRangeTest code that handles the equality case.
[llvm-complete.git] / test / tools / llvm-lipo / create-executable.test
blob19b3bfef3d4c1ade50d5ad67eeb3603a5c136b96
1 # Executable testing is not supported on Windows, since all files are considered executable
2 # UNSUPPORTED: system-windows
3 # RUN: yaml2obj %p/Inputs/i386-slice.yaml > %t-i386.o
4 # RUN: yaml2obj %p/Inputs/x86_64-slice.yaml > %t-x86_64.o
6 # RUN: chmod -x %t-i386.o
7 # RUN: chmod -x %t-x86_64.o
8 # RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
9 # RUN: test ! -x %t-universal.o
11 # RUN: chmod +x %t-i386.o
12 # RUN: llvm-lipo %t-i386.o %t-x86_64.o -create -output %t-universal.o
13 # RUN: test -x %t-universal.o