Fix the `build-expression->derivation' fixed-output test.

* tests/derivations.scm ("build-expression->derivation"): Fix the
  builder to actually pass a bytevector to `put-bytevector'.
This commit is contained in:
Ludovic Courtès 2012-06-11 23:02:39 +02:00
parent 9809055707
commit 0e383c76ce
1 changed files with 9 additions and 8 deletions

View File

@ -214,11 +214,12 @@
(test-assert "build-expression->derivation for fixed-output derivation" (test-assert "build-expression->derivation for fixed-output derivation"
(let* ((url "http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz") (let* ((url "http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")
(builder `(begin (builder
`(begin
(use-modules (web client) (web uri) (use-modules (web client) (web uri)
(rnrs io ports)) (rnrs io ports) (srfi srfi-11))
(let ((bv (http-get (string->uri ,url) (let-values (((resp bv)
#:decode-body? #f))) (http-get (string->uri ,url) #:decode-body? #f)))
(call-with-output-file %output (call-with-output-file %output
(lambda (p) (lambda (p)
(put-bytevector p bv)))))) (put-bytevector p bv))))))