diff options
author | Aurora <rind38@disroot.org> | 2022-03-09 20:27:44 +0000 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2022-03-10 14:57:56 +0100 |
commit | af5252d5f16319d2924c2fb9fa24376b4f10c8c4 (patch) | |
tree | cd69594d2bb0b23701238632d1bc529aeed8595c | |
parent | 3c5da3329ddfe554f5fdbc43d4e6affe15b28608 (diff) | |
download | guix-af5252d5f16319d2924c2fb9fa24376b4f10c8c4.tar guix-af5252d5f16319d2924c2fb9fa24376b4f10c8c4.tar.gz |
gnu: cl-fast-http: Fix tests.
* gnu/packages/lisp-xyz.scm (sbcl-fast-http)[arguments]: Add 'asd-systems'
parameter. Enable tests.
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 73ed1bcf00..560937d9ea 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -4435,9 +4435,7 @@ depending on content size.") (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi")))) (build-system asdf-build-system/sbcl) (arguments - ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found, - ;; required by #<SYSTEM "fast-http">. Why? - `(#:tests? #f)) + '(#:asd-systems '("fast-http-test" "fast-http"))) (native-inputs `(("sbcl-prove" ,sbcl-prove) ("cl-syntax" ,sbcl-cl-syntax))) |