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 | 39ddb3f9c19a118b9b56246eee3b7352531dea94 (patch) | |
tree | f18b9ffd60b936d3c05dd8b6320f1509e30fdfba /llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp | |
parent | 40c585a5687adaf4971e1375a25bcd4ba47dd112 (diff) | |
download | bcm5719-llvm-39ddb3f9c19a118b9b56246eee3b7352531dea94.tar.gz bcm5719-llvm-39ddb3f9c19a118b9b56246eee3b7352531dea94.zip |
MCJIT: skip some more new multi-module tests on unsupported platforms.
This should fix the i386 Darwin build-bot.
llvm-svn: 191840
Diffstat (limited to 'llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp')
-rw-r--r-- | llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp b/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp index a7fc7fe2e2c..4d650e8dbaf 100644 --- a/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp +++ b/llvm/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); |