[llvm] r330033 - Revert r330027: "[llvm-exegesis] re-enable failing tests after r330026."

Clement Courbet via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 13 08:19:16 PDT 2018


Author: courbet
Date: Fri Apr 13 08:19:16 2018
New Revision: 330033

URL: http://llvm.org/viewvc/llvm-project?rev=330033&view=rev
Log:
Revert r330027: "[llvm-exegesis] re-enable failing tests after r330026."

The tests are still failing on some bots.

Modified:
    llvm/trunk/unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp

Modified: llvm/trunk/unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp?rev=330033&r1=330032&r2=330033&view=diff
==============================================================================
--- llvm/trunk/unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp (original)
+++ llvm/trunk/unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp Fri Apr 13 08:19:16 2018
@@ -76,7 +76,7 @@ private:
   while(0)
 
 
-TEST_F(MachineFunctionGeneratorTest, JitFunction) {
+TEST_F(MachineFunctionGeneratorTest, DISABLED_JitFunction) {
   SKIP_UNSUPPORTED_PLATFORM;
   JitFunctionContext Context(createTargetMachine());
   JitFunction Function(std::move(Context), {});
@@ -86,7 +86,7 @@ TEST_F(MachineFunctionGeneratorTest, Jit
   // Function();
 }
 
-TEST_F(MachineFunctionGeneratorTest, JitFunctionXOR32rr) {
+TEST_F(MachineFunctionGeneratorTest, DISABLED_JitFunctionXOR32rr) {
   SKIP_UNSUPPORTED_PLATFORM;
   JitFunctionContext Context(createTargetMachine());
   JitFunction Function(
@@ -96,7 +96,7 @@ TEST_F(MachineFunctionGeneratorTest, Jit
   // Function();
 }
 
-TEST_F(MachineFunctionGeneratorTest, JitFunctionMOV64ri) {
+TEST_F(MachineFunctionGeneratorTest, DISABLED_JitFunctionMOV64ri) {
   SKIP_UNSUPPORTED_PLATFORM;
   JitFunctionContext Context(createTargetMachine());
   JitFunction Function(std::move(Context),
@@ -106,7 +106,7 @@ TEST_F(MachineFunctionGeneratorTest, Jit
   // Function();
 }
 
-TEST_F(MachineFunctionGeneratorTest, JitFunctionMOV32ri) {
+TEST_F(MachineFunctionGeneratorTest, DISABLED_JitFunctionMOV32ri) {
   SKIP_UNSUPPORTED_PLATFORM;
   JitFunctionContext Context(createTargetMachine());
   JitFunction Function(std::move(Context),




More information about the llvm-commits mailing list