[llvm] r191840 - MCJIT: skip some more new multi-module tests on unsupported platforms.

Tim Northover tnorthover at apple.com
Wed Oct 2 09:11:07 PDT 2013


Author: tnorthover
Date: Wed Oct  2 11:11:07 2013
New Revision: 191840

URL: http://llvm.org/viewvc/llvm-project?rev=191840&view=rev
Log:
MCJIT: skip some more new multi-module tests on unsupported platforms.

This should fix the i386 Darwin build-bot.

Modified:
    llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp

Modified: llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp?rev=191840&r1=191839&r2=191840&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp Wed Oct  2 11:11:07 2013
@@ -235,6 +235,8 @@ TEST_F(MCJITMultipleModuleTest, two_modu
 // 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_mo
 // 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_mo
 // 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_mo
 // 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);





More information about the llvm-commits mailing list