mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 02:59:17 -05:00
tests: Fix thinko in `derivation' test.
* tests/derivations.scm ("derivation with local file as input"): Return a Boolean instead of a bytevector. Don't attempt to compare the content of the result with that of the input.
This commit is contained in:
parent
238e43b9fa
commit
bbb76f6f71
1 changed files with 4 additions and 4 deletions
|
@ -134,7 +134,7 @@ (define prefix-len (string-length dir))
|
|||
(test-assert "derivation with local file as input"
|
||||
(let* ((builder (add-text-to-store
|
||||
%store "my-builder.sh"
|
||||
"(while read line ; do echo $line ; done) < $in > $out"
|
||||
"(while read line ; do echo \"$line\" ; done) < $in > $out"
|
||||
'()))
|
||||
(input (search-path %load-path "ice-9/boot-9.scm"))
|
||||
(drv-path (derivation %store "derivation-with-input-file"
|
||||
|
@ -150,9 +150,9 @@ (define prefix-len (string-length dir))
|
|||
`((,builder)
|
||||
(,input))))) ; ← local file name
|
||||
(and (build-derivations %store (list drv-path))
|
||||
(let ((p (derivation-path->output-path drv-path)))
|
||||
(and (call-with-input-file p get-bytevector-all)
|
||||
(call-with-input-file input get-bytevector-all))))))
|
||||
;; Note: we can't compare the files because the above trick alters
|
||||
;; the contents.
|
||||
(valid-path? %store (derivation-path->output-path drv-path)))))
|
||||
|
||||
(test-assert "fixed-output derivation"
|
||||
(let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
|
||||
|
|
Loading…
Reference in a new issue