2015-08-27 00:36:41 +02:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2016-05-20 17:07:23 +02:00
|
|
|
# Copyright © 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2015-08-27 00:36:41 +02:00
|
|
|
#
|
|
|
|
# This file is part of GNU Guix.
|
|
|
|
#
|
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
#
|
|
|
|
# Test the 'guix graph' command-line utility.
|
|
|
|
#
|
|
|
|
|
2016-05-20 17:07:23 +02:00
|
|
|
tmpfile1="t-guix-graph1-$$"
|
|
|
|
tmpfile2="t-guix-graph2-$$"
|
|
|
|
trap 'rm -f "$tmpfile1" "$tmpfile2"' EXIT
|
|
|
|
|
2015-08-27 00:36:41 +02:00
|
|
|
guix graph --version
|
|
|
|
|
|
|
|
for package in guile-bootstrap coreutils python
|
|
|
|
do
|
2015-11-23 23:31:53 +01:00
|
|
|
for graph in package bag-emerged bag bag-with-origins
|
2015-08-27 00:36:41 +02:00
|
|
|
do
|
|
|
|
guix graph -t "$graph" "$package" | grep "$package"
|
|
|
|
done
|
|
|
|
done
|
|
|
|
|
|
|
|
guix build guile-bootstrap
|
|
|
|
guix graph -t references guile-bootstrap | grep guile-bootstrap
|
2015-09-02 15:23:52 +02:00
|
|
|
|
|
|
|
guix graph -e '(@ (gnu packages bootstrap) %bootstrap-guile)' \
|
|
|
|
| grep guile-bootstrap
|
|
|
|
|
|
|
|
if guix graph -e +; then false; else true; fi
|
2016-05-20 17:07:23 +02:00
|
|
|
|
|
|
|
# Try passing store file names.
|
|
|
|
|
|
|
|
guix graph -t references guile-bootstrap > "$tmpfile1"
|
|
|
|
guix graph -t references `guix build guile-bootstrap` > "$tmpfile2"
|
|
|
|
cmp "$tmpfile1" "$tmpfile2"
|
|
|
|
|
|
|
|
# XXX: Filter the file names in the graph to work around the fact that we get
|
|
|
|
# a mixture of relative and absolute file names.
|
|
|
|
guix graph -t derivation coreutils > "$tmpfile1"
|
|
|
|
guix graph -t derivation `guix build -d coreutils` > "$tmpfile2"
|
|
|
|
cmp "$tmpfile1" "$tmpfile2"
|