mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-04 03:44:59 +00:00
0f848a24e1
Summary: The test doesn't work on Windows but there seems no good way to disable the test for Windows only so I'm undoing the test changes.
18 lines
731 B
ArmAsm
18 lines
731 B
ArmAsm
# REQUIRES: x86
|
|
## Show that bitcode files and inputs to LTO-related options are stored in the
|
|
## reproduce package and that intermediate files (such as the LTO-compiled
|
|
## object) are not.
|
|
|
|
# RUN: rm -rf %t.dir
|
|
# RUN: mkdir -p %t.dir/build1
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64 %s -o %t.dir/build1/foo.o
|
|
# RUN: echo > %t.dir/build1/empty_profile.txt
|
|
# RUN: cd %t.dir
|
|
# RUN: ld.lld build1/foo.o -o /dev/null --reproduce repro1.tar --lto-sample-profile=%t.dir/build1/empty_profile.txt
|
|
# RUN: tar tvf repro1.tar | FileCheck %s --implicit-check-not={{.}}
|
|
|
|
# CHECK-DAG: {{.*}} repro1/{{.*}}/empty_profile.txt
|
|
# CHECK-DAG: {{.*}} repro1/response.txt
|
|
# CHECK-DAG: {{.*}} repro1/version.txt
|
|
# CHECK-DAG: {{.*}} repro1/{{.*}}/foo.o
|