diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-07 21:48:09 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2010-08-07 21:48:09 +0000 |
commit | 3cb96268c47ded89e31885bf4dcfe29ee71ab214 (patch) | |
tree | 0113b22879aca7e39414f3b06ce20fd13ce3a6a5 | |
parent | fff0f11989a9ef23ab3e308783cc90c7620000eb (diff) |
Move the bugpoint test passes to a plugin in preparation for having bugpoint
use opt.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110520 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/BugPoint/crash-narrowfunctiontest.ll | 3 | ||||
-rw-r--r-- | test/BugPoint/remove_arguments_test.ll | 3 | ||||
-rw-r--r-- | tools/Makefile | 2 | ||||
-rw-r--r-- | tools/bugpoint-passes/TestPasses.cpp (renamed from tools/bugpoint/TestPasses.cpp) | 0 |
4 files changed, 5 insertions, 3 deletions
diff --git a/test/BugPoint/crash-narrowfunctiontest.ll b/test/BugPoint/crash-narrowfunctiontest.ll index 6ad09d2e25..aec90f1960 100644 --- a/test/BugPoint/crash-narrowfunctiontest.ll +++ b/test/BugPoint/crash-narrowfunctiontest.ll @@ -1,6 +1,7 @@ ; Test that bugpoint can narrow down the testcase to the important function +; FIXME: This likely fails on windows ; -; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null +; RUN: bugpoint -load %llvmlibsdir/BugpointPasses.so %s -output-prefix %t -bugpoint-crashcalls -silence-passes > /dev/null define i32 @foo() { ret i32 1 } diff --git a/test/BugPoint/remove_arguments_test.ll b/test/BugPoint/remove_arguments_test.ll index 439ea54546..62a4dd32ac 100644 --- a/test/BugPoint/remove_arguments_test.ll +++ b/test/BugPoint/remove_arguments_test.ll @@ -1,4 +1,5 @@ -; RUN: bugpoint %s -output-prefix %t -bugpoint-crashcalls -silence-passes +; FIXME: This likely fails on windows +; RUN: bugpoint -load %llvmlibsdir/BugpointPasses.so %s -output-prefix %t -bugpoint-crashcalls -silence-passes ; RUN: llvm-dis %t-reduced-simplified.bc -o - | FileCheck %s ; Test to make sure that arguments are removed from the function if they are diff --git a/tools/Makefile b/tools/Makefile index 6e23dac111..7e5f3aa25f 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -20,7 +20,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \ llc llvm-ranlib llvm-ar llvm-nm \ llvm-ld llvm-prof llvm-link \ lli llvm-extract llvm-mc \ - bugpoint llvm-bcanalyzer llvm-stub \ + bugpoint bugpoint-passes llvm-bcanalyzer llvm-stub \ llvmc # Let users override the set of tools to build from the command line. diff --git a/tools/bugpoint/TestPasses.cpp b/tools/bugpoint-passes/TestPasses.cpp index 4ae23f5b76..4ae23f5b76 100644 --- a/tools/bugpoint/TestPasses.cpp +++ b/tools/bugpoint-passes/TestPasses.cpp |