About the failing test below, lzip is not found on armhf and all tests are skipped but the last one, that fails.
The patch attached, makes sure that this test is also skipped if lzip is not found. Now I'm not sure why it is not found but that's another matter. WDYT? Mathieu > --8<---------------cut here---------------start------------->8--- > test-name: make-lzip-input-port/compressed > location: > /tmp/guix-build-guix-1.0.1-10.41b4b71.drv-0/source/tests/lzlib.scm:111 > source: > + (test-assert > + "make-lzip-input-port/compressed" > + (let* ((len (pk 'len (+ 10 (random 4000 %seed)))) > + (data (random-bytevector len)) > + (compressed > + (make-lzip-input-port/compressed > + (open-bytevector-input-port data))) > + (result > + (call-with-lzip-input-port > + compressed > + get-bytevector-all))) > + (pk (bytevector-length result) > + (bytevector-length data)) > + random seed for tests: 1574602043 > (bytevector=? result data))) > > ;;; (len 3501) > actual-value: #f > actual-error: > + (wrong-type-arg > + #f > + "Wrong type to apply: ~S" > + (#f) > + (#f)) > result: FAIL
>From 13d2014879372a947e3239c14bdc9f6ae8f3c318 Mon Sep 17 00:00:00 2001 From: Mathieu Othacehe <m.othac...@gmail.com> Date: Tue, 26 Nov 2019 08:31:43 +0100 Subject: [PATCH] tests: lzlib: Do not fail if lzlib in not available. * tests/lzlib.scm: Use test-assert* for all test cases, so that there are no failures if lzlib is unavailable. --- tests/lzlib.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lzlib.scm b/tests/lzlib.scm index 543622bb45..d8d0e6edf8 100644 --- a/tests/lzlib.scm +++ b/tests/lzlib.scm @@ -108,7 +108,7 @@ (test-assert* "Bytevector of size relative to Lzip internal buffers (1MiB+1)" (compress-and-decompress (random-bytevector (1+ (* 1024 1024))))) -(test-assert "make-lzip-input-port/compressed" +(test-assert* "make-lzip-input-port/compressed" (let* ((len (pk 'len (+ 10 (random 4000 %seed)))) (data (random-bytevector len)) (compressed (make-lzip-input-port/compressed -- 2.24.0