Skip to content

Commit d34b392

Browse files
authored
[LLVM][Tests] remove %exeext from lli-child-target parameter. (#143077)
Its presence seems to actively hinder the ToolSubst mechanism that was supposed to fill in the path to the tool, which prevented these tests from working on Cygwin.
1 parent 6baaa0a commit d34b392

12 files changed

+12
-12
lines changed

llvm/test/ExecutionEngine/MCJIT/remote/cross-module-a.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
1+
; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/cross-module-b.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/eh.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; REQUIRES: cxx-shared-library
2-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s
2+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target %s
33
; XFAIL: target=arm{{.*}}, target={{.*-(cygwin|windows-msvc|windows-gnu)}}
44
; REQUIRES: thread_support
55
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/multi-module-a.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/multi-module-c.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
1+
; RUN: %lli -jit-kind=mcjit -extra-module=%p/Inputs/multi-module-b.ll -extra-module=%p/Inputs/multi-module-c.ll -disable-lazy-compilation=true -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
22
; REQUIRES: thread_support
33
; XFAIL: target={{.*-windows-(gnu|msvc)}}
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/simpletest-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/stubs-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target%exeext %s
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target %s
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-common-symbols-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target%exeext %s
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -disable-lazy-compilation=false -mcjit-remote-process=lli-child-target %s
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-data-align-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target%exeext %s
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target %s
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-fp-no-external-funcs-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-global-init-nonzero-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s > /dev/null
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target %s > /dev/null
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-global-init-nonzero-sm-pic.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext \
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target \
22
; RUN: -relocation-model=pic -code-model=small %s > /dev/null
33
; XFAIL: target={{(mips|mipsel)-.*}}, target={{(aarch64|arm).*}}, target={{(i686|i386).*}}
44
; XFAIL: target={{.*-windows-(gnu|msvc)}}

llvm/test/ExecutionEngine/MCJIT/remote/test-ptr-reloc-remote.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target%exeext %s
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -O0 -mcjit-remote-process=lli-child-target %s
22
; XFAIL: target={{.*-windows-(gnu|msvc)}}
33
; REQUIRES: thread_support
44
; UNSUPPORTED: target=powerpc64-unknown-linux-gnu

llvm/test/ExecutionEngine/MCJIT/remote/test-ptr-reloc-sm-pic.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext \
1+
; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target \
22
; RUN: -O0 -relocation-model=pic -code-model=small %s
33
; XFAIL: target={{(mips|mipsel)-.*}}, target={{(aarch64|arm).*}}, target={{(i686|i386).*}}
44
; XFAIL: target={{.*-windows-(gnu|msvc)}}

0 commit comments

Comments
 (0)