From aa92cf980cab9f085df11c79c4b27d2b8b0d88aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 1 Feb 2013 09:17:35 +0100 Subject: guix-package: Gracefully report non-existing outputs. * guix-package.in (guix-package)[find-package](ensure-output): New procedure. Use it to validate SUB-DRV. --- tests/guix-package.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/guix-package.sh b/tests/guix-package.sh index 157f863719..0b31b55103 100644 --- a/tests/guix-package.sh +++ b/tests/guix-package.sh @@ -120,6 +120,13 @@ fi # Make sure the `:' syntax works. guix-package --bootstrap -i "binutils:lib" -p "$profile" -n +# Make sure nonexistent outputs are reported. +guix-package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n +if guix-package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n; +then false; else true; fi +if guix-package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile"; +then false; else true; fi + # Check whether `--list-available' returns something sensible. guix-package -A 'gui.*e' | grep guile @@ -161,4 +168,5 @@ do done # Extraneous argument. -! guix-package install foo-bar +if guix-package install foo-bar; +then false; else true; fi -- cgit v1.2.3