1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Author: Michael R. Crusoe <crusoe@debian.org>
Last-Update: 2020-12-31
Description: Skip check for threads
Forwarded: not-needed
Index: hmmer/testsuite/i19-hmmpgmd-ga.pl
===================================================================
--- hmmer.orig/testsuite/i19-hmmpgmd-ga.pl
+++ hmmer/testsuite/i19-hmmpgmd-ga.pl
@@ -68,11 +68,11 @@ foreach $h3prog (@h3progs) { if (! -x "
# if not found, threads are not enabled and this
# test would fail, but we return ok status 0 because
# we don't want the full testsuite to fail.
-$have_threads = `cat $builddir/src/p7_config.h | grep "^#define HMMER_THREADS"`;
-if($have_threads eq "") {
- printf("HMMER_THREADS not defined in p7_config.h\n");
- exit 0;
-}
+#$have_threads = `cat $builddir/src/p7_config.h | grep "^#define HMMER_THREADS"`;
+#if($have_threads eq "") {
+# printf("HMMER_THREADS not defined in p7_config.h\n");
+# exit 0;
+#}
# Verify that the wport and cport are CLOSED - we don't want to
|