gnu: ecl-cl-pcg: Disable tests.
* gnu/packages/lisp-xyz.scm (ecl-cl-pcg)[arguments]: Disable tests. Change-Id: Ibd931ed7bb2cfb99e5b717bfcab4864b5496fc79
This commit is contained in:
parent
ec4c0fad32
commit
9a4a480f8d
1 changed files with 10 additions and 1 deletions
|
@ -2971,7 +2971,16 @@ (define-public sbcl-cl-pcg
|
|||
(license license:expat))))
|
||||
|
||||
(define-public ecl-cl-pcg
|
||||
(sbcl-package->ecl-package sbcl-cl-pcg))
|
||||
(let ((pkg (sbcl-package->ecl-package sbcl-cl-pcg)))
|
||||
(package
|
||||
(inherit pkg)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments pkg)
|
||||
;; Tests are failing on ECL with:
|
||||
;; PCG.TEST::TEST-REWINDAn error occurred during initialization:
|
||||
;; 40502229875678917802724098623316930025 is not of type
|
||||
;; (INTEGER 0 2305843009213693951)
|
||||
((#:tests? _ #f) #f))))))
|
||||
|
||||
(define-public cl-pcg
|
||||
(sbcl-package->cl-source-package sbcl-cl-pcg))
|
||||
|
|
Loading…
Reference in a new issue