openbsd-ports/lang/sbcl/patches/patch-contrib_build-contrib
op b14f9837b8 lang/sbcl: disable contrib tests
tests for the contrib packages are run during the build.  sb-concurrency
has failed in bulks three times in a row (reported by naddy) but I can't
reproduce the failure locally so disable the tests.  This is a quick
hack to allow sbcl,threads to build, hence not waiting for the
maintainer.  (I'm working on a better approach that runs the contrib
tests during `make test'.)
2022-05-20 15:14:18 +00:00

15 lines
413 B
Plaintext

don't run the tests for contrib while building
Index: contrib/build-contrib
--- contrib/build-contrib.orig
+++ contrib/build-contrib
@@ -2,7 +2,7 @@
mkdir -p ../obj/asdf-cache/$@/
-if $GNUMAKE -j1 -C $@ test < /dev/null 2>&1 && touch ../obj/asdf-cache/$@/test-passed.test-report ; then
+if $GNUMAKE -j1 -C $@ < /dev/null 2>&1 && touch ../obj/asdf-cache/$@/test-passed.test-report ; then
:
else
exit $?