Hi Martin,
Martin Castillo <castilma@uni-bremen.de> skribis:
Toggle quote (7 lines)
> + guix system build t-guix-system-11155 -n
> + grep 't-guix-system-11155:3:2: .*module .*qemu.*not found' t-guix-system-error-11155
> + rm -f t-guix-system-11155 t-guix-system-error-11155 '/tmp/t-guix-system-11155/*'
> + rmdir /tmp/t-guix-system-11155
> ./test-env: line 1: 11154 Terminated "/home/mcd/guix/pre-inst-env" "/home/mcd/guix/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL"
> FAIL tests/guix-system.sh (exit status: 1)
The failing test here is this:
Toggle snippet (14 lines)
cat > "$tmpfile" <<EOF
;; Line 1.
(use-modules (gnu))
(use-package-modules qemu)
EOF
if guix system build "$tmpfile" -n 2> "$errorfile"
then false
else
grep "$tmpfile:3:2: .*module .*qemu.*not found" "$errorfile"
grep "Try.*use-package-modules virtualization" "$errorfile"
fi
Could it be that there are stale gnu/packages/qemu.{scm,go} files in the
working tree?
Thanks in advance,
Ludo’.