diff options
author | Tim Northover <tnorthover@apple.com> | 2013-10-02 16:11:07 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2013-10-02 16:11:07 +0000 |
commit | ea246d6af8f112001c8b13ffcc9c4fcc6ad992a2 (patch) | |
tree | c9d0011d123926a7a9cb340945e4415f49c2e39e /unittests/ExecutionEngine | |
parent | a2f1317f09ac6b4a7239b033fabd216d71b77629 (diff) | |
download | external_llvm-ea246d6af8f112001c8b13ffcc9c4fcc6ad992a2.zip external_llvm-ea246d6af8f112001c8b13ffcc9c4fcc6ad992a2.tar.gz external_llvm-ea246d6af8f112001c8b13ffcc9c4fcc6ad992a2.tar.bz2 |
MCJIT: skip some more new multi-module tests on unsupported platforms.
This should fix the i386 Darwin build-bot.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191840 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ExecutionEngine')
-rw-r--r-- | unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp b/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp index a7fc7fe..4d650e8 100644 --- a/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp +++ b/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp @@ -235,6 +235,8 @@ TEST_F(MCJITMultipleModuleTest, two_module_global_variables_case) { // Module C { Extern FA, Function FC which calls FA }, // execute FC, FB, FA TEST_F(MCJITMultipleModuleTest, three_module_case) { + SKIP_UNSUPPORTED_PLATFORM; + OwningPtr<Module> A, B, C; Function *FA, *FB, *FC; createThreeModuleCase(A, FA, B, FB, C, FC); @@ -258,6 +260,8 @@ TEST_F(MCJITMultipleModuleTest, three_module_case) { // Module C { Extern FA, Function FC which calls FA }, // execute FA, FB, FC TEST_F(MCJITMultipleModuleTest, three_module_case_reverse_order) { + SKIP_UNSUPPORTED_PLATFORM; + OwningPtr<Module> A, B, C; Function *FA, *FB, *FC; createThreeModuleCase(A, FA, B, FB, C, FC); @@ -281,6 +285,8 @@ TEST_F(MCJITMultipleModuleTest, three_module_case_reverse_order) { // Module C { Extern FB, Function FC which calls FB }, // execute FC, FB, FA TEST_F(MCJITMultipleModuleTest, three_module_chain_case) { + SKIP_UNSUPPORTED_PLATFORM; + OwningPtr<Module> A, B, C; Function *FA, *FB, *FC; createThreeModuleChainedCallsCase(A, FA, B, FB, C, FC); @@ -304,6 +310,8 @@ TEST_F(MCJITMultipleModuleTest, three_module_chain_case) { // Module C { Extern FB, Function FC which calls FB }, // execute FA, FB, FC TEST_F(MCJITMultipleModuleTest, three_modules_chain_case_reverse_order) { + SKIP_UNSUPPORTED_PLATFORM; + OwningPtr<Module> A, B, C; Function *FA, *FB, *FC; createThreeModuleChainedCallsCase(A, FA, B, FB, C, FC); |