gnu: sbcl-specialized-function: Disable tests.

* gnu/packages/lisp-xyz.scm (sbcl-specialized-function)[arguments]: Disable
  tests.
This commit is contained in:
Guillaume Le Vaillant 2020-12-01 10:49:46 +01:00
parent 718dd9779a
commit 26e92b7e78
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -8430,7 +8430,11 @@ (define-public sbcl-specialized-function
`(("fiveam" ,sbcl-fiveam)))
(arguments
`(#:asd-files '("specialized-function.asd")
#:test-asd-file "specialized-function.test.asd")))))
#:test-asd-file "specialized-function.test.asd"
;; Tests fail because they try to use an internal symbol of SBCL
;; that does not exists in recent versions:
;; "The variable SB-VM:COMPLEX-VECTOR-NIL-WIDETAG is unbound."
#:tests? #f)))))
(define-public cl-specialized-function
(sbcl-package->cl-source-package sbcl-specialized-function))