[llvm-commits] [llvm] r168210 - in /llvm/trunk/test/ExecutionEngine/MCJIT: simpletest-remote.ll stubs-remote.ll test-common-symbols-remote.ll test-data-align-remote.ll test-fp-no-external-funcs-remote.ll test-global-init-nonzero-remote.ll test-ptr-reloc-remote.ll

Andrew Kaylor andrew.kaylor at intel.com
Fri Nov 16 14:21:04 PST 2012


Author: akaylor
Date: Fri Nov 16 16:21:04 2012
New Revision: 168210

URL: http://llvm.org/viewvc/llvm-project?rev=168210&view=rev
Log:
Marking remote mcjit tests as XFAIL for ARM (hopefully only temporarily).

Modified:
    llvm/trunk/test/ExecutionEngine/MCJIT/simpletest-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/stubs-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/test-data-align-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll
    llvm/trunk/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/simpletest-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/simpletest-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/simpletest-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/simpletest-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
+; XFAIL: arm
 
 define i32 @bar() {
 	ret i32 0

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/stubs-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/stubs-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/stubs-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/stubs-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -disable-lazy-compilation=false %s
+; XFAIL: arm
 
 define i32 @main() nounwind {
 entry:

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/test-common-symbols-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 -disable-lazy-compilation=false %s
+; XFAIL: arm
 
 ; The intention of this test is to verify that symbols mapped to COMMON in ELF
 ; work as expected.

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/test-data-align-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/test-data-align-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/test-data-align-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/test-data-align-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN:  %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 %s
+; XFAIL: arm
 
 ; Check that a variable is always aligned as specified.
 

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/test-fp-no-external-funcs-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
+; XFAIL: arm
 
 define double @test(double* %DP, double %Arg) {
 	%D = load double* %DP		; <double> [#uses=1]

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/test-global-init-nonzero-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit %s > /dev/null
+; XFAIL: arm
 
 @count = global i32 1, align 4
 

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll?rev=168210&r1=168209&r2=168210&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/test-ptr-reloc-remote.ll Fri Nov 16 16:21:04 2012
@@ -1,4 +1,5 @@
 ; RUN: %lli -mtriple=%mcjit_triple -use-mcjit -remote-mcjit -O0 %s
+; XFAIL: arm
 
 @.str = private unnamed_addr constant [6 x i8] c"data1\00", align 1
 @ptr = global i8* getelementptr inbounds ([6 x i8]* @.str, i32 0, i32 0), align 4





More information about the llvm-commits mailing list