[llvm-commits] [test-suite] r105148 - /test-suite/trunk/External/HMMER/Makefile
Daniel Dunbar
daniel at zuster.org
Sat May 29 21:39:27 PDT 2010
Author: ddunbar
Date: Sat May 29 23:39:26 2010
New Revision: 105148
URL: http://llvm.org/viewvc/llvm-project?rev=105148&view=rev
Log:
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.
Modified:
test-suite/trunk/External/HMMER/Makefile
Modified: test-suite/trunk/External/HMMER/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/HMMER/Makefile?rev=105148&r1=105147&r2=105148&view=diff
==============================================================================
--- test-suite/trunk/External/HMMER/Makefile (original)
+++ test-suite/trunk/External/HMMER/Makefile Sat May 29 23:39:26 2010
@@ -14,6 +14,9 @@
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
More information about the llvm-commits
mailing list