aboutsummaryrefslogtreecommitdiff
path: root/External/HMMER
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-05-30 04:39:26 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-05-30 04:39:26 +0000
commit77287ecb051ece5f0a4b30da525846416765bf6a (patch)
tree7529061c78bd03f4233f827fd0acece3184aea29 /External/HMMER
parentd68a7c402a726e080dac6af8333738c2ff71738a (diff)
Fix a bug in HMMER test, the test was almost never running because it refuses to run if it's temporary file is left around. Just 'rm -f' the temp file in the Makefile as a workaround.
git-svn-id: https://llvm.org/svn/llvm-project/test-suite/trunk@105148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'External/HMMER')
-rw-r--r--External/HMMER/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/External/HMMER/Makefile b/External/HMMER/Makefile
index 0cf38c4e..c8bc8a43 100644
--- a/External/HMMER/Makefile
+++ b/External/HMMER/Makefile
@@ -14,6 +14,9 @@ TARGET_FLAGS += -maltivec -faltivec
LCCFLAGS += -maltivec -faltivec
endif
+# Make sure HMMER temporary file is removed, it will break the test.
+$(shell rm -f $(HMMER_ROOT)/globin.hmm.xxx)
+
ifdef LARGE_PROBLEM_SIZE
RUN_OPTIONS = --fixed 400 --cpu 1 --num 200000 --seed 1158818515 $(HMMER_ROOT)/globin.hmm
else