diff options
author | Brendan Fabeny <bf@FreeBSD.org> | 2013-03-22 20:44:17 +0000 |
---|---|---|
committer | Brendan Fabeny <bf@FreeBSD.org> | 2013-03-22 20:44:17 +0000 |
commit | be5b4879429ae39f102e74d3f11eaca8fd4c1493 (patch) | |
tree | f66ce4b0de46352db892c781976081005a5c86a8 /lang | |
parent | d76a57ad0825d316e4ff9888787691f03068529f (diff) | |
download | ports-be5b4879429ae39f102e74d3f11eaca8fd4c1493.tar.gz ports-be5b4879429ae39f102e74d3f11eaca8fd4c1493.zip |
fix a recent build failure by temporarily disabling two contrib
sb-sprof tests that are run during the build proper
Notes
Notes:
svn path=/head/; revision=314966
Diffstat (limited to 'lang')
-rw-r--r-- | lang/sbcl/files/patch-contrib__sb-sprof__test.lisp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lang/sbcl/files/patch-contrib__sb-sprof__test.lisp b/lang/sbcl/files/patch-contrib__sb-sprof__test.lisp new file mode 100644 index 000000000000..5d6fa724cd72 --- /dev/null +++ b/lang/sbcl/files/patch-contrib__sb-sprof__test.lisp @@ -0,0 +1,14 @@ +--- contrib/sb-sprof/test.lisp.orig 2013-02-26 06:42:18.000000000 -0500 ++++ contrib/sb-sprof/test.lisp 2013-03-22 14:29:52.000000000 -0400 +@@ -1,9 +1,9 @@ + (in-package :cl-user) + (require :sb-sprof) + +-#-(or win32 darwin) ;not yet ++#-(or win32 darwin freebsd) ;not yet + (sb-sprof::test) +-#-(or win32 darwin) ;not yet ++#-(or win32 darwin freebsd) ;not yet + (sb-sprof::consing-test) + + ;; For debugging purposes, print output for visual inspection to see if |