* bug#30476: failing test-suite
2018-02-16 9:39 ` Ludovic Courtès
@ 2018-02-16 11:51 ` Martin Castillo
2018-02-16 13:00 ` Ludovic Courtès
0 siblings, 1 reply; 6+ messages in thread
From: Martin Castillo @ 2018-02-16 11:51 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 30476
[-- Attachment #1: Type: text/plain, Size: 398 bytes --]
On 16.02.2018 10:39, Ludovic Courtès wrote:
> Hi Martin,
>
> Martin Castillo <castilma@uni-bremen.de> skribis:
>
>> on my raspberry pi, building from commit
>> 7e0a6fac0b4ebffda322eff6e803363ee72a257a. the test-suite fails.
>>
>> my current guix is from november or so.
>> the first log was created with -j 4.
>> the second with -j 1.
>
> You forgot to attach the logs. :-)
How embarrassing.
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: pi-test-suite.log --]
[-- Type: text/x-log; name="pi-test-suite.log", Size: 112436 bytes --]
==================================================
GNU Guix 0.14.0.1872-7e0a6: ./test-suite.log
==================================================
# TOTAL: 755
# PASS: 745
# SKIP: 8
# XFAIL: 0
# FAIL: 2
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
SKIP: tests/base32
==================
sh: nix-hash: command not found
test-name: bytevector->base32-string
location: /home/pi/code/guix/tests/base32.scm:48
source:
+ (test-assert
+ "bytevector->base32-string"
+ (fold (lambda (bv expected result)
+ (and result
+ (string=?
+ (bytevector->base32-string bv)
+ expected)))
+ #t
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))
+ '(""
+ "my"
+ "mzxq"
+ "mzxw6"
+ "mzxw6yq"
+ "mzxw6ytb"
+ "mzxw6ytboi")))
actual-value: #t
result: PASS
test-name: base32-string->bytevector
location: /home/pi/code/guix/tests/base32.scm:65
source:
+ (test-assert
+ "base32-string->bytevector"
+ (every (lambda (bv)
+ (equal?
+ (base32-string->bytevector
+ (bytevector->base32-string bv))
+ bv))
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
actual-value: #t
result: PASS
test-name: nix-base32-string->bytevector
location: /home/pi/code/guix/tests/base32.scm:73
source:
+ (test-assert
+ "nix-base32-string->bytevector"
+ (every (lambda (bv)
+ (equal?
+ (nix-base32-string->bytevector
+ (bytevector->nix-base32-string bv))
+ bv))
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
actual-value: #t
result: PASS
test-name: &invalid-base32-character
location: /home/pi/code/guix/tests/base32.scm:81
source:
+ (test-equal
+ "&invalid-base32-character"
+ #\e
+ (guard (c ((invalid-base32-character? c)
+ (invalid-base32-character-value c)))
+ (nix-base32-string->bytevector
+ (string-append (make-string 51 #\a) "e"))))
expected-value: #\e
actual-value: #\e
result: PASS
test-name: sha256 & bytevector->nix-base32-string
location: /home/pi/code/guix/tests/base32.scm:92
source:
+ (test-assert
+ "sha256 & bytevector->nix-base32-string"
+ (let ((file (search-path %load-path "tests/test.drv")))
+ (equal?
+ (bytevector->nix-base32-string
+ (sha256
+ (call-with-input-file file get-bytevector-all)))
+ (let* ((c (format
+ #f
+ "~a --type sha256 --base32 --flat \"~a\""
+ %nix-hash
+ file))
+ (p (open-input-pipe c))
+ (l (read-line p)))
+ (close-pipe p)
+ l))))
result: SKIP
SKIP: tests/snix
================
test-name: factorize-uri
location: /home/pi/code/guix/tests/snix.scm:36
source:
+ (test-assert
+ "factorize-uri"
+ (every?
+ (match-lambda
+ ((uri version '-> expected)
+ (equal? (factorize-uri uri version) expected)))
+ '(("http://example.com/foo.tgz"
+ "1.0"
+ ->
+ "http://example.com/foo.tgz")
+ ("http://example.com/foo-2.8.tgz"
+ "2.8"
+ ->
+ ("http://example.com/foo-" version ".tgz"))
+ ("http://example.com/2.8/foo-2.8.tgz"
+ "2.8"
+ ->
+ ("http://example.com/"
+ version
+ "/foo-"
+ version
+ ".tgz")))))
actual-value: #t
result: PASS
test-name: nixpkgs->guix-package
location: /home/pi/code/guix/tests/snix.scm:54
source:
+ (test-assert
+ "nixpkgs->guix-package"
+ (match (nixpkgs->guix-package
+ %nixpkgs-directory
+ "guile")
+ (('package
+ ('name "guile")
+ ('version (? string?))
+ ('source ('origin _ ...))
+ ('build-system _)
+ ('inputs ('quasiquote (inputs ...)))
+ ('propagated-inputs ('quasiquote (pinputs ...)))
+ ('home-page (? string?))
+ ('synopsis (? string?))
+ ('description (? string?))
+ ('license (? symbol?)))
+ (and (member '("libffi" ,libffi) inputs)
+ (member '("gmp" ,gmp) pinputs)
+ #t))
+ (x (pk 'fail x #f))))
result: SKIP
SKIP: tests/syscalls
====================
test-name: mount, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:40
source:
+ (test-equal
+ "mount, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda ()
+ (mount "/dev/null" "/does-not-exist" "ext2")
+ #f)
+ (compose system-error-errno list)))
expected-value: 2
actual-value: 2
result: PASS
test-name: umount, ENOENT/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:48
source:
+ (test-assert
+ "umount, ENOENT/EPERM"
+ (catch 'system-error
+ (lambda () (umount "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM ENOENT)))))
actual-value: (1 2)
result: PASS
test-name: mount-points
location: /home/pi/code/guix/tests/syscalls.scm:57
source:
+ (test-assert
+ "mount-points"
+ (any (cute member <> (mount-points))
+ '("/" "/proc" "/sys" "/dev")))
actual-value: ("/" "/dev" "/sys" "/proc" "/dev/shm" "/dev/pts" "/run" "/run/lock" "/sys/fs/cgroup" "/sys/fs/cgroup/systemd" "/sys/fs/cgroup/cpuset" "/sys/fs/cgroup/cpu,cpuacct" "/sys/fs/cgroup/net_cls" "/sys/fs/cgroup/freezer" "/sys/fs/cgroup/blkio" "/sys/fs/cgroup/devices" "/proc/sys/fs/binfmt_misc" "/dev/mqueue" "/run/rpc_pipefs" "/sys/kernel/debug" "/sys/kernel/config" "/boot" "/run/user/109" "/sys/fs/fuse/connections" "/run/user/109/gvfs" "/run/user/1000")
result: PASS
test-name: swapon, ENOENT/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:63
source:
+ (test-assert
+ "swapon, ENOENT/EPERM"
+ (catch 'system-error
+ (lambda () (swapon "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM ENOENT)))))
actual-value: (1 2)
result: PASS
test-name: swapoff, ENOENT/EINVAL/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:71
source:
+ (test-assert
+ "swapoff, ENOENT/EINVAL/EPERM"
+ (catch 'system-error
+ (lambda () (swapoff "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM EINVAL ENOENT)))))
actual-value: (1 22 2)
result: PASS
test-name: mkdtemp!
location: /home/pi/code/guix/tests/syscalls.scm:79
source:
+ (test-assert
+ "mkdtemp!"
+ (let* ((tmp (or (getenv "TMPDIR") "/tmp"))
+ (dir (mkdtemp!
+ (string-append tmp "/guix-test-XXXXXX"))))
+ (and (file-exists? dir) (begin (rmdir dir) #t))))
actual-value: #t
result: PASS
test-name: statfs, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:87
source:
+ (test-equal
+ "statfs, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda () (statfs "/does-not-exist"))
+ (compose system-error-errno list)))
expected-value: 2
actual-value: 2
result: PASS
test-name: statfs
location: /home/pi/code/guix/tests/syscalls.scm:94
source:
+ (test-assert
+ "statfs"
+ (let ((fs (statfs "/")))
+ (and (file-system? fs)
+ (> (file-system-block-size fs) 0)
+ (>= (file-system-blocks-available fs) 0)
+ (>= (file-system-blocks-free fs)
+ (file-system-blocks-available fs)))))
actual-value: #t
result: PASS
test-name: clone
location: /home/pi/code/guix/tests/syscalls.scm:111
source:
+ (test-assert
+ "clone"
+ (match (clone (logior CLONE_NEWUSER SIGCHLD))
+ (0 (primitive-exit 42))
+ (pid (and (not (equal?
+ (readlink (user-namespace pid))
+ (readlink (user-namespace (getpid)))))
+ (match (waitpid pid)
+ ((_ . status) (= 42 (status:exit-val status))))))))
actual-value: #t
result: PASS
test-name: setns
location: /home/pi/code/guix/tests/syscalls.scm:124
source:
+ (test-assert
+ "setns"
+ (match (clone (logior CLONE_NEWUSER SIGCHLD))
+ (0 (primitive-exit 0))
+ (clone-pid
+ (match (pipe)
+ ((in . out)
+ (match (primitive-fork)
+ (0
+ (close in)
+ (call-with-input-file
+ (user-namespace clone-pid)
+ (lambda (port) (setns (port->fdes port) 0)))
+ (write 'done out)
+ (close out)
+ (primitive-exit 0))
+ (fork-pid
+ (close out)
+ (read in)
+ (let ((result
+ (and (equal?
+ (readlink
+ (user-namespace clone-pid))
+ (readlink
+ (user-namespace fork-pid))))))
+ (waitpid clone-pid)
+ (waitpid fork-pid)
+ result))))))))
actual-value: #t
result: PASS
test-name: pivot-root
location: /home/pi/code/guix/tests/syscalls.scm:156
source:
+ (test-equal
+ "pivot-root"
+ #t
+ (match (pipe)
+ ((in . out)
+ (match (clone (logior CLONE_NEWUSER CLONE_NEWNS SIGCHLD))
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (close in)
+ (call-with-temporary-directory
+ (lambda (root)
+ (let ((put-old (string-append root "/real-root")))
+ (mount "none" root "tmpfs")
+ (mkdir put-old)
+ (call-with-output-file
+ (string-append root "/test")
+ (lambda (port) (display "testing\n" port)))
+ (pivot-root root put-old)
+ (write (file-exists? "/test") out)
+ (close out)))))
+ (lambda () (primitive-exit 0))))
+ (pid (close out)
+ (let ((result (read in)))
+ (close in)
+ (and (zero? (match (waitpid pid)
+ ((_ . status)
+ (status:exit-val status))))
+ (eq? #t result))))))))
result: SKIP
test-name: scandir*, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:189
source:
+ (test-equal
+ "scandir*, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda () (scandir* "/does/not/exist"))
+ (lambda args (system-error-errno args))))
expected-value: 2
actual-value: 2
result: PASS
test-name: scandir*, ASCII file names
location: /home/pi/code/guix/tests/syscalls.scm:197
source:
+ (test-equal
+ "scandir*, ASCII file names"
+ (scandir
+ (dirname
+ (search-path %load-path "guix/base32.scm"))
+ (const #t)
+ string<?)
+ (match (scandir*
+ (dirname
+ (search-path %load-path "guix/base32.scm")))
+ (((names . properties) ...) names)))
expected-value: ("." ".." "base16.go" "base16.scm" "base32.go" "base32.scm" "base64.go" "base64.scm" "build" "build-system" "build-system.go" "build-system.scm" "cache.go" "cache.scm" "combinators.go" "combinators.scm" "config.go" "config.scm" "config.scm.in" "cpio.go" "cpio.scm" "cve.go" "cve.scm" "cvs-download.go" "cvs-download.scm" "derivations.go" "derivations.scm" "discovery.go" "discovery.scm" "docker.go" "docker.scm" "download.go" "download.scm" "elf.go" "elf.scm" "ftp-client.go" "ftp-client.scm" "gcrypt.go" "gcrypt.scm" "gexp.go" "gexp.scm" "git-download.go" "git-download.scm" "git.go" "git.scm" "gnu-maintenance.go" "gnu-maintenance.scm" "gnupg.go" "gnupg.scm" "grafts.go" "grafts.scm" "graph.go" "graph.scm" "hash.go" "hash.scm" "hg-download.go" "hg-download.scm" "http-client.go" "http-client.scm" "i18n.go" "i18n.scm" "import" "licenses.go" "licenses.scm" "man-db.scm" "memoization.go" "memoization.scm" "modules.go" "modules.scm" "monad-repl.go" "monad-repl.scm" "monads.go" "monads.scm" "nar.go" "nar.scm" "packages.go" "packages.scm" "pk-crypto.go" "pk-crypto.scm" "pki.go" "pki.scm" "profiles.go" "profiles.scm" "profiling.go" "profiling.scm" "progress.go" "progress.scm" "records.go" "records.scm" "scripts" "scripts.go" "scripts.scm" "search-paths.go" "search-paths.scm" "serialization.go" "serialization.scm" "sets.go" "sets.scm" "ssh.go" "ssh.scm" "store" "store.go" "store.scm" "svn-download.go" "svn-download.scm" "tests" "tests.go" "tests.scm" "ui.go" "ui.scm" "upstream.go" "upstream.scm" "utils.go" "utils.scm" "workers.go" "workers.scm" "zlib.go" "zlib.scm")
actual-value: ("." ".." "base16.go" "base16.scm" "base32.go" "base32.scm" "base64.go" "base64.scm" "build" "build-system" "build-system.go" "build-system.scm" "cache.go" "cache.scm" "combinators.go" "combinators.scm" "config.go" "config.scm" "config.scm.in" "cpio.go" "cpio.scm" "cve.go" "cve.scm" "cvs-download.go" "cvs-download.scm" "derivations.go" "derivations.scm" "discovery.go" "discovery.scm" "docker.go" "docker.scm" "download.go" "download.scm" "elf.go" "elf.scm" "ftp-client.go" "ftp-client.scm" "gcrypt.go" "gcrypt.scm" "gexp.go" "gexp.scm" "git-download.go" "git-download.scm" "git.go" "git.scm" "gnu-maintenance.go" "gnu-maintenance.scm" "gnupg.go" "gnupg.scm" "grafts.go" "grafts.scm" "graph.go" "graph.scm" "hash.go" "hash.scm" "hg-download.go" "hg-download.scm" "http-client.go" "http-client.scm" "i18n.go" "i18n.scm" "import" "licenses.go" "licenses.scm" "man-db.scm" "memoization.go" "memoization.scm" "modules.go" "modules.scm" "monad-repl.go" "monad-repl.scm" "monads.go" "monads.scm" "nar.go" "nar.scm" "packages.go" "packages.scm" "pk-crypto.go" "pk-crypto.scm" "pki.go" "pki.scm" "profiles.go" "profiles.scm" "profiling.go" "profiling.scm" "progress.go" "progress.scm" "records.go" "records.scm" "scripts" "scripts.go" "scripts.scm" "search-paths.go" "search-paths.scm" "serialization.go" "serialization.scm" "sets.go" "sets.scm" "ssh.go" "ssh.scm" "store" "store.go" "store.scm" "svn-download.go" "svn-download.scm" "tests" "tests.go" "tests.scm" "ui.go" "ui.scm" "upstream.go" "upstream.scm" "utils.go" "utils.scm" "workers.go" "workers.scm" "zlib.go" "zlib.scm")
result: PASS
test-name: scandir*, UTF-8 file names
location: /home/pi/code/guix/tests/syscalls.scm:204
source:
+ (test-equal
+ "scandir*, UTF-8 file names"
+ '("." ".." "α" "λ")
+ (call-with-temporary-directory
+ (lambda (directory)
+ (let ((creat (pointer->procedure
+ int
+ (dynamic-func "creat" (dynamic-link))
+ (list '* int))))
+ (creat (string->pointer
+ (string-append directory "/α")
+ "UTF-8")
+ 420)
+ (creat (string->pointer
+ (string-append directory "/λ")
+ "UTF-8")
+ 420)
+ (let ((locale (setlocale LC_ALL)))
+ (dynamic-wind
+ (lambda () (setlocale LC_ALL "C"))
+ (lambda ()
+ (match (scandir* directory)
+ (((names . properties) ...) names)))
+ (lambda () (setlocale LC_ALL locale))))))))
expected-value: ("." ".." "α" "λ")
actual-value: ("." ".." "α" "λ")
result: PASS
test-name: scandir*, properties
location: /home/pi/code/guix/tests/syscalls.scm:231
source:
+ (test-assert
+ "scandir*, properties"
+ (let ((directory
+ (dirname
+ (search-path %load-path "guix/base32.scm"))))
+ (every (lambda (entry name)
+ (match entry
+ ((name2 . properties)
+ (and (string=? name2 name)
+ (let* ((full (string-append directory "/" name))
+ (stat (lstat full))
+ (inode (assoc-ref properties 'inode))
+ (type (assoc-ref properties 'type)))
+ (and (= inode (stat:ino stat))
+ (or (eq? type 'unknown)
+ (eq? type (stat:type stat)))))))))
+ (scandir* directory)
+ (scandir directory (const #t) string<?))))
actual-value: #t
result: PASS
test-name: fcntl-flock wait
location: /home/pi/code/guix/tests/syscalls.scm:248
source:
+ (test-equal
+ "fcntl-flock wait"
+ 42
+ (let ((file (open-file temp-file "w0b")))
+ (fcntl-flock file 'write-lock)
+ (match (primitive-fork)
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (let ((file (open-file temp-file "r0b")))
+ (fcntl-flock file 'read-lock)
+ (primitive-exit (read file)))
+ (primitive-exit 1))
+ (lambda () (primitive-exit 2))))
+ (pid (display "hello, world!" file)
+ (force-output file)
+ (sleep 1)
+ (seek file 0 SEEK_SET)
+ (truncate-file file 0)
+ (write 42 file)
+ (force-output file)
+ (fcntl-flock file 'unlock)
+ (match (waitpid pid)
+ ((_ . status)
+ (let ((result (status:exit-val status)))
+ (close-port file)
+ result)))))))
expected-value: 42
actual-value: 42
result: PASS
test-name: fcntl-flock non-blocking
location: /home/pi/code/guix/tests/syscalls.scm:287
source:
+ (test-equal
+ "fcntl-flock non-blocking"
+ EAGAIN
+ (match (pipe)
+ ((input . output)
+ (match (primitive-fork)
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (close-port output)
+ (read-char input)
+ (let ((file (open-file temp-file "w0")))
+ (catch 'flock-error
+ (lambda ()
+ (fcntl-flock file 'write-lock #:wait? #f))
+ (lambda (key errno)
+ (primitive-exit (pk 'errno errno)))))
+ (primitive-exit -1))
+ (lambda () (primitive-exit -2))))
+ (pid (close-port input)
+ (let ((file (open-file temp-file "w0")))
+ (fcntl-flock file 'write-lock)
+ (write 'green-light output)
+ (force-output output)
+ (match (waitpid pid)
+ ((_ . status)
+ (let ((result (status:exit-val status)))
+ (fcntl-flock file 'unlock)
+ (close-port file)
+ result)))))))))
;;; (errno 11)
expected-value: 11
actual-value: 11
result: PASS
test-name: set-thread-name
location: /home/pi/code/guix/tests/syscalls.scm:329
source:
+ (test-equal
+ "set-thread-name"
+ "Syscall Test"
+ (let ((name (thread-name)))
+ (set-thread-name "Syscall Test")
+ (let ((new-name (thread-name)))
+ (set-thread-name name)
+ new-name)))
expected-value: "Syscall Test"
actual-value: "Syscall Test"
result: PASS
test-name: all-network-interface-names
location: /home/pi/code/guix/tests/syscalls.scm:337
source:
+ (test-assert
+ "all-network-interface-names"
+ (match (all-network-interface-names)
+ (((? string? names) ..1) (member "lo" names))))
actual-value: ("lo")
result: PASS
test-name: network-interface-names
location: /home/pi/code/guix/tests/syscalls.scm:342
source:
+ (test-assert
+ "network-interface-names"
+ (match (network-interface-names)
+ (((? string? names) ..1)
+ (lset<=
+ string=?
+ names
+ (all-network-interface-names)))))
actual-value: #t
result: PASS
test-name: network-interface-flags
location: /home/pi/code/guix/tests/syscalls.scm:347
source:
+ (test-assert
+ "network-interface-flags"
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (flags (network-interface-flags sock "lo")))
+ (close-port sock)
+ (and (not (zero? (logand flags IFF_LOOPBACK)))
+ (not (zero? (logand flags IFF_UP))))))
actual-value: #t
result: PASS
test-name: loopback-network-interface?
location: /home/pi/code/guix/tests/syscalls.scm:354
source:
+ (test-equal
+ "loopback-network-interface?"
+ ENODEV
+ (and (loopback-network-interface? "lo")
+ (catch 'system-error
+ (lambda ()
+ (loopback-network-interface? "nonexistent")
+ #f)
+ (lambda args (system-error-errno args)))))
expected-value: 19
actual-value: 19
result: PASS
test-name: loopback-network-interface-running?
location: /home/pi/code/guix/tests/syscalls.scm:364
source:
+ (test-equal
+ "loopback-network-interface-running?"
+ ENODEV
+ (and (network-interface-running? "lo")
+ (catch 'system-error
+ (lambda ()
+ (network-interface-running? "nonexistent")
+ #f)
+ (lambda args (system-error-errno args)))))
expected-value: 19
actual-value: 19
result: PASS
test-name: set-network-interface-flags
location: /home/pi/code/guix/tests/syscalls.scm:375
source:
+ (test-assert
+ "set-network-interface-flags"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-flags sock "lo" IFF_UP))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interface-address lo
location: /home/pi/code/guix/tests/syscalls.scm:385
source:
+ (test-equal
+ "network-interface-address lo"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.0.0.1")
+ 0)
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (addr (network-interface-address sock "lo")))
+ (close-port sock)
+ addr))
expected-value: #(2 2130706433 0)
actual-value: #(2 2130706433 0)
result: PASS
test-name: set-network-interface-address
location: /home/pi/code/guix/tests/syscalls.scm:393
source:
+ (test-assert
+ "set-network-interface-address"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-address
+ sock
+ "nonexistent"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.12.14.15")
+ 0)))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interface-netmask lo
location: /home/pi/code/guix/tests/syscalls.scm:407
source:
+ (test-equal
+ "network-interface-netmask lo"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "255.0.0.0")
+ 0)
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (addr (network-interface-netmask sock "lo")))
+ (close-port sock)
+ addr))
expected-value: #(2 4278190080 0)
actual-value: #(2 4278190080 0)
result: PASS
test-name: set-network-interface-netmask
location: /home/pi/code/guix/tests/syscalls.scm:415
source:
+ (test-assert
+ "set-network-interface-netmask"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-netmask
+ sock
+ "nonexistent"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "255.0.0.0")
+ 0)))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interfaces returns one or more interfaces
location: /home/pi/code/guix/tests/syscalls.scm:428
source:
+ (test-equal
+ "network-interfaces returns one or more interfaces"
+ '(#t #t #t)
+ (match (network-interfaces)
+ ((interfaces ..1)
+ (list (every interface? interfaces)
+ (every string? (map interface-name interfaces))
+ (every (lambda (sockaddr)
+ (or (vector? sockaddr) (not sockaddr)))
+ (map interface-address interfaces))))))
expected-value: (#t #t #t)
actual-value: (#t #t #t)
result: PASS
test-name: network-interfaces returns "lo"
location: /home/pi/code/guix/tests/syscalls.scm:440
source:
+ (test-equal
+ "network-interfaces returns \"lo\""
+ (list #t
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.0.0.1")
+ 0))
+ (match (filter
+ (lambda (interface)
+ (string=? "lo" (interface-name interface)))
+ (network-interfaces))
+ ((loopbacks ..1)
+ (list (every (lambda (lo)
+ (not (zero? (logand
+ IFF_LOOPBACK
+ (interface-flags lo)))))
+ loopbacks)
+ (match (find (lambda (lo)
+ (= AF_INET
+ (sockaddr:fam (interface-address lo))))
+ loopbacks)
+ (#f #f)
+ (lo (interface-address lo)))))))
expected-value: (#t #(2 2130706433 0))
actual-value: (#t #(2 2130706433 0))
result: PASS
test-name: add-network-route/gateway
location: /home/pi/code/guix/tests/syscalls.scm:456
source:
+ (test-assert
+ "add-network-route/gateway"
+ (let ((sock (socket AF_INET SOCK_STREAM 0))
+ (gateway
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "192.168.0.1")
+ 0)))
+ (catch 'system-error
+ (lambda ()
+ (add-network-route/gateway sock gateway))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: delete-network-route
location: /home/pi/code/guix/tests/syscalls.scm:469
source:
+ (test-assert
+ "delete-network-route"
+ (let ((sock (socket AF_INET SOCK_STREAM 0))
+ (destination
+ (make-socket-address AF_INET INADDR_ANY 0)))
+ (catch 'system-error
+ (lambda ()
+ (delete-network-route sock destination))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: tcgetattr ENOTTY
location: /home/pi/code/guix/tests/syscalls.scm:479
source:
+ (test-equal
+ "tcgetattr ENOTTY"
+ ENOTTY
+ (catch 'system-error
+ (lambda ()
+ (call-with-input-file
+ "/dev/null"
+ (lambda (port) (tcgetattr (fileno port)))))
+ (compose system-error-errno list)))
expected-value: 25
actual-value: 25
result: PASS
test-name: tcgetattr
location: /home/pi/code/guix/tests/syscalls.scm:493
source:
+ (test-assert
+ "tcgetattr"
+ (let ((termios (tcgetattr 0)))
+ (and (termios? termios)
+ (> (termios-input-speed termios) 0)
+ (> (termios-output-speed termios) 0))))
result: SKIP
test-name: tcsetattr
location: /home/pi/code/guix/tests/syscalls.scm:499
source:
+ (test-assert
+ "tcsetattr"
+ (let ((first (tcgetattr 0)))
+ (tcsetattr 0 (tcsetattr-action TCSANOW) first)
+ (equal? first (tcgetattr 0))))
result: SKIP
test-name: terminal-window-size ENOTTY
location: /home/pi/code/guix/tests/syscalls.scm:504
source:
+ (test-assert
+ "terminal-window-size ENOTTY"
+ (call-with-input-file
+ "/dev/null"
+ (lambda (port)
+ (catch 'system-error
+ (lambda () (terminal-window-size port))
+ (lambda args
+ (memv (system-error-errno args)
+ (list ENOTTY EINVAL)))))))
actual-value: (25 22)
result: PASS
test-name: terminal-columns
location: /home/pi/code/guix/tests/syscalls.scm:515
source:
+ (test-assert
+ "terminal-columns"
+ (> (terminal-columns) 0))
actual-value: #t
result: PASS
test-name: terminal-columns non-file port
location: /home/pi/code/guix/tests/syscalls.scm:518
source:
+ (test-assert
+ "terminal-columns non-file port"
+ (> (terminal-columns
+ (open-input-string
+ "Join us now, share the software!"))
+ 0))
actual-value: #t
result: PASS
test-name: utmpx-entries
location: /home/pi/code/guix/tests/syscalls.scm:522
source:
+ (test-assert
+ "utmpx-entries"
+ (match (utmpx-entries)
+ (((? utmpx? entries) ...)
+ (every (lambda (entry)
+ (match (utmpx-user entry)
+ ((? string?)
+ (or (not (memv (utmpx-login-type entry)
+ (list (login-type INIT_PROCESS)
+ (login-type LOGIN_PROCESS)
+ (login-type USER_PROCESS))))
+ (> (utmpx-pid entry) 0)))
+ (#f #t)))
+ entries))))
actual-value: #t
result: PASS
test-name: read-utmpx, EOF
location: /home/pi/code/guix/tests/syscalls.scm:539
source:
+ (test-assert
+ "read-utmpx, EOF"
+ (eof-object? (read-utmpx (%make-void-port "r"))))
actual-value: #t
result: PASS
test-name: read-utmpx
location: /home/pi/code/guix/tests/syscalls.scm:544
source:
+ (test-assert
+ "read-utmpx"
+ (let ((result
+ (call-with-input-file
+ "/var/run/utmpx"
+ read-utmpx)))
+ (or (utmpx? result) (eof-object? result))))
result: SKIP
SKIP: tests/gremlin
===================
test-name: elf-dynamic-info-needed, executable
location: /home/pi/code/guix/tests/gremlin.scm:44
source:
+ (test-assert
+ "elf-dynamic-info-needed, executable"
+ (let* ((elf (call-with-input-file %guile-executable read-elf))
+ (dyninfo (elf-dynamic-info elf)))
+ (or (not dyninfo)
+ (lset<=
+ string=?
+ (list (string-append "libguile-" (effective-version))
+ "libgc"
+ "libunistring"
+ "libffi")
+ (map (lambda (lib)
+ (string-take lib (string-contains lib ".so")))
+ (elf-dynamic-info-needed dyninfo))))))
result: SKIP
test-name: expand-origin
location: /home/pi/code/guix/tests/gremlin.scm:55
source:
+ (test-equal
+ "expand-origin"
+ '("OOO/../lib"
+ "OOO"
+ "../OOO/bar/OOO/baz"
+ "ORIGIN/foo")
+ (map (cut expand-origin <> "OOO")
+ '("$ORIGIN/../lib"
+ "${ORIGIN}"
+ "../${ORIGIN}/bar/$ORIGIN/baz"
+ "ORIGIN/foo")))
expected-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo")
actual-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo")
result: PASS
SKIP: tests/pypi
================
test-name: guix-package->pypi-name, old URL style
location: /home/pi/code/guix/tests/pypi.scm:78
source:
+ (test-equal
+ "guix-package->pypi-name, old URL style"
+ "psutil"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri "https://pypi.io/packages/source/p/psutil/psutil-4.3.0.tar.gz"))))))
expected-value: "psutil"
actual-value: "psutil"
result: PASS
test-name: guix-package->pypi-name, new URL style
location: /home/pi/code/guix/tests/pypi.scm:86
source:
+ (test-equal
+ "guix-package->pypi-name, new URL style"
+ "certbot"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri "https://pypi.python.org/packages/a2/3b/4756e6a0ceb14e084042a2a65c615d68d25621c6fd446d0fc10d14c4ce7d/certbot-0.8.1.tar.gz"))))))
expected-value: "certbot"
actual-value: "certbot"
result: PASS
test-name: guix-package->pypi-name, several URLs
location: /home/pi/code/guix/tests/pypi.scm:94
source:
+ (test-equal
+ "guix-package->pypi-name, several URLs"
+ "cram"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri (list "https://bitheap.org/cram/cram-0.7.tar.gz"
+ (pypi-uri "cram" "0.7"))))))))
expected-value: "cram"
actual-value: "cram"
result: PASS
test-name: pypi->guix-package
location: /home/pi/code/guix/tests/pypi.scm:103
source:
+ (test-assert
+ "pypi->guix-package"
+ (mock ((guix import utils)
+ url-fetch
+ (lambda (url file-name)
+ (match url
+ ("https://example.com/foo-1.0.0.tar.gz"
+ (begin
+ (mkdir "foo-1.0.0")
+ (with-output-to-file
+ "foo-1.0.0/requirements.txt"
+ (lambda () (display test-requirements)))
+ (system* "tar" "czvf" file-name "foo-1.0.0/")
+ (delete-file-recursively "foo-1.0.0")
+ (set! test-source-hash
+ (call-with-input-file file-name port-sha256))))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (mock ((guix http-client)
+ http-fetch
+ (lambda (url . rest)
+ (match url
+ ("https://pypi.python.org/pypi/foo/json"
+ (values
+ (open-input-string test-json)
+ (string-length test-json)))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (match (pypi->guix-package "foo")
+ (('package
+ ('name "python-foo")
+ ('version "1.0.0")
+ ('source
+ ('origin
+ ('method 'url-fetch)
+ ('uri ('pypi-uri "foo" 'version))
+ ('sha256 ('base32 (? string? hash)))))
+ ('build-system 'python-build-system)
+ ('propagated-inputs
+ ('quasiquote
+ (("python-bar" ('unquote 'python-bar))
+ ("python-baz" ('unquote 'python-baz)))))
+ ('home-page "http://example.com")
+ ('synopsis "summary")
+ ('description "summary")
+ ('license 'license:lgpl2.0))
+ (string=?
+ (bytevector->nix-base32-string test-source-hash)
+ hash))
+ (x (pk 'fail x #f))))))
foo-1.0.0/
foo-1.0.0/requirements.txt
actual-value: #t
result: PASS
test-name: pypi->guix-package, wheels
location: /home/pi/code/guix/tests/pypi.scm:154
source:
+ (test-assert
+ "pypi->guix-package, wheels"
+ (mock ((guix import utils)
+ url-fetch
+ (lambda (url file-name)
+ (match url
+ ("https://example.com/foo-1.0.0.tar.gz"
+ (begin
+ (mkdir "foo-1.0.0")
+ (with-output-to-file
+ "foo-1.0.0/requirements.txt"
+ (lambda () (display test-requirements)))
+ (system* "tar" "czvf" file-name "foo-1.0.0/")
+ (delete-file-recursively "foo-1.0.0")
+ (set! test-source-hash
+ (call-with-input-file file-name port-sha256))))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ (begin
+ (mkdir "foo-1.0.0.dist-info")
+ (with-output-to-file
+ "foo-1.0.0.dist-info/metadata.json"
+ (lambda () (display test-metadata)))
+ (let ((zip-file (string-append file-name ".zip")))
+ (system*
+ "zip"
+ zip-file
+ "foo-1.0.0.dist-info/metadata.json")
+ (rename-file zip-file file-name))
+ (delete-file-recursively "foo-1.0.0.dist-info")))
+ (_ (error "Unexpected URL: " url)))))
+ (mock ((guix http-client)
+ http-fetch
+ (lambda (url . rest)
+ (match url
+ ("https://pypi.python.org/pypi/foo/json"
+ (values
+ (open-input-string test-json)
+ (string-length test-json)))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (match (pypi->guix-package "foo")
+ (('package
+ ('name "python-foo")
+ ('version "1.0.0")
+ ('source
+ ('origin
+ ('method 'url-fetch)
+ ('uri ('pypi-uri "foo" 'version))
+ ('sha256 ('base32 (? string? hash)))))
+ ('build-system 'python-build-system)
+ ('propagated-inputs
+ ('quasiquote
+ (("python-bar" ('unquote 'python-bar))
+ ("python-baz" ('unquote 'python-baz)))))
+ ('home-page "http://example.com")
+ ('synopsis "summary")
+ ('description "summary")
+ ('license 'license:lgpl2.0))
+ (string=?
+ (bytevector->nix-base32-string test-source-hash)
+ hash))
+ (x (pk 'fail x #f))))))
result: SKIP
random seed for tests: 1518717180
FAIL: tests/guix-build
======================
+ guix build --version
guix build (GNU Guix) 0.14.0.1872-7e0a6
Copyright (C) 2018 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
+ guix build -e +
accepted connection from pid 10624, user pi
Backtrace:
12 (apply-smob/1 #<catch-closure 2027f20>)
In ice-9/boot-9.scm:
713:2 11 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
619:8 10 (_ #(#(#<directory (guile-user) 200e910>)))
In guix/ui.scm:
1489:12 9 (run-guix-command _ . _)
In ice-9/boot-9.scm:
837:9 8 (catch _ _ #<procedure 76647b50 at guix/ui.scm:542:2 (…> …)
837:9 7 (catch _ _ #<procedure 76647b60 at guix/ui.scm:648:6 (…> …)
In guix/scripts/build.scm:
728:24 6 (_)
657:4 5 (options->derivations _ _)
In srfi/srfi-1.scm:
679:15 4 (append-map _ _ . _)
592:17 3 (map1 (#<procedure + (#:optional _ _ . _)>))
In guix/scripts/build.scm:
680:25 2 (_ _)
In guix/store.scm:
1443:24 1 (run-with-store _ _ #:guile-for-build _ #:system _ # _)
In unknown file:
0 (_ #<build-daemon 256.97 20b4de8>)
ERROR: ERROR: Wrong type to apply: 0
+ true
+ guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
accepted connection from pid 11232, user pi
gnu/packages/bootstrap.scm:388:2: warning: package 'glibc-bootstrap' has no source
++ guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
accepted connection from pid 11349, user pi
gnu/packages/bootstrap.scm:388:2: warning: package 'glibc-bootstrap' has no source
+ test '' = ''
+ guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
+ grep -e -guile-
accepted connection from pid 11436, user pi
/home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
+ grep -e '-hello-[0-9\.]\+\.drv$'
+ guix build hello -d
accepted connection from pid 11511, user pi
/home/pi/code/guix/test-tmp/store/9f2i6xr91y0yjb9wnhw319l266di3p63-hello-2.10.drv
+ GUIX_DAEMON_SOCKET=file:///home/pi/code/guix/test-tmp/var/10565/daemon-socket/socket
+ guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
accepted connection from pid 12338, user pi
/home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
+ GUIX_DAEMON_SOCKET=weird://uri
+ guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
guix build: error: failed to connect to `weird://uri': Operation not supported
+ module_dir=t-guix-build-10577
+ mkdir t-guix-build-10577
+ trap 'rm -rf t-guix-build-10577' EXIT
+ cat
+ GUIX_PACKAGE_PATH=t-guix-build-10577
+ export GUIX_PACKAGE_PATH
+ guix build -d -S foo
accepted connection from pid 12491, user pi
random seed for tests: 1518722856
/home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
+ guix build -d -S foo
+ grep -e 'foo\.tar\.gz'
accepted connection from pid 12629, user pi
random seed for tests: 1518722738
/home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
+ unset GUIX_BUILD_OPTIONS
++ guix build -d -S baz
accepted connection from pid 12985, user pi
random seed for tests: 1518722386
++ guix build -d -S foo
accepted connection from pid 13045, user pi
random seed for tests: 1518722330
+ test /home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv = /home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
+ guix build -d --sources=package foo
accepted connection from pid 13347, user pi
random seed for tests: 1518722001
/home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
+ guix build -d --sources=package foo
+ grep -e 'foo\.tar\.gz'
accepted connection from pid 13787, user pi
random seed for tests: 1518721581
/home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
+ guix build -d --sources bar
accepted connection from pid 14279, user pi
random seed for tests: 1518721084
/home/pi/code/guix/test-tmp/store/6nqpddjsfra5iizmdl19n0fvh9pl8hpv-bar.tar.gz.drv
/home/pi/code/guix/test-tmp/store/lr0hsf4bsaf0gmjw4v4wq9gngiww91jq-bar.dat.drv
++ wc -l
++ grep -e 'bar\.tar\.gz' -e 'bar\.dat'
++ guix build -d --sources bar
accepted connection from pid 14836, user pi
random seed for tests: 1518720523
+ test 2 -eq 2
+ guix build -d --sources=all bar
accepted connection from pid 15240, user pi
random seed for tests: 1518717835
/home/pi/code/guix/test-tmp/store/6nqpddjsfra5iizmdl19n0fvh9pl8hpv-bar.tar.gz.drv
/home/pi/code/guix/test-tmp/store/lr0hsf4bsaf0gmjw4v4wq9gngiww91jq-bar.dat.drv
++ wc -l
++ grep -e 'bar\.tar\.gz' -e 'bar\.dat'
++ guix build -d --sources bar
accepted connection from pid 15714, user pi
random seed for tests: 1518718309
+ test 2 -eq 2
+ guix build -d --sources=transitive foo
accepted connection from pid 15870, user pi
random seed for tests: 1518718453
/home/pi/code/guix/test-tmp/store/mv72vd00hrz3wd8xcdaab7akryn66cis-foo.tar.gz.drv
/home/pi/code/guix/test-tmp/store/6nqpddjsfra5iizmdl19n0fvh9pl8hpv-bar.tar.gz.drv
/home/pi/code/guix/test-tmp/store/lr0hsf4bsaf0gmjw4v4wq9gngiww91jq-bar.dat.drv
++ guix build -d --sources=transitive foo
++ grep -e 'foo\.tar\.gz' -e 'bar\.tar\.gz' -e 'bar\.dat'
++ wc -l
accepted connection from pid 16023, user pi
random seed for tests: 1518718616
+ test 3 -eq 3
++ guix build -d -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
accepted connection from pid 16187, user pi
+ drv=/home/pi/code/guix/test-tmp/store/k3lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv
++ guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
accepted connection from pid 16342, user pi
+ out=/home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
++ guix build --log-file /home/pi/code/guix/test-tmp/store/k3lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv
accepted connection from pid 16537, user pi
+ log=/home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
+ echo /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
+ grep 'log/.*guile.*drv'
/home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
+ test -f /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
++ guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' --log-file
accepted connection from pid 16814, user pi
+ test /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2 = /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
++ guix build --log-file guile-bootstrap
accepted connection from pid 17201, user pi
random seed for tests: 1518711591
+ test /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2 = /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
++ guix build --log-file /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
accepted connection from pid 17804, user pi
+ test /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2 = /home/pi/code/guix/test-tmp/var/log/guix/drvs/k3/lzs1j5kca6xc0mav521yzff756qlsy-guile-bootstrap-2.0.drv.bz2
+ guix build hello-0.0.1 -n
accepted connection from pid 17808, user pi
random seed for tests: 1518712203
guix build: error: hello-0.0.1: unknown package
+ true
+ result=t-result-10577
+ guix build -r t-result-10577 -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
accepted connection from pid 18074, user pi
/home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
+ test -x t-result-10577/bin/guile
+ guix build -r t-result-10577 -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
accepted connection from pid 18110, user pi
/home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
guix build: error: failed to create GC root `/home/pi/code/guix/t-result-10577': File exists
+ true
+ rm -f t-result-10577
+ guix build coreutils --target=mips64el-linux-gnu --dry-run --no-substitutes
accepted connection from pid 18155, user pi
random seed for tests: 1518712527
The following derivations would be built:
/home/pi/code/guix/test-tmp/store/g8n7kpny7giwf295kir1b3csa5lrb6sb-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/hp0xi0k8v64rr6lwc2yqrjc72i9ixxhb-procps-ng-3.3.12.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kqj8v27rlamdsc6jkzr6n523ffwlkkc5-procps-3.3.12.drv
/home/pi/code/guix/test-tmp/store/gz2r6kb5sl8azqxqk9w4nnzda8l5wk7p-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/in11cxbvahj8h40hdk7g4x2mrarsh2bz-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/s09f7y3rjss13n5pm4fxa4k248ydrlr4-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/flzsb5jpdnzz6m4vc4rih0z09kj6ziay-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/psf7p9336sppa96mv7z87iyybi0ijldz-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/d29qvs2r51nncy400qc9rig5gra45asa-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/i3pnm4ci86by26ln5qvvr49pl1n9x78p-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/pdw95szgvjb04992a3znjmfkniw9lg06-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/47wpi64k47rxrx07cp4bswamcxwnmwfq-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/sh9xiz29vn933nqv4a0ki23x6bmfhcrb-libstdc++-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j6aw9ksgniahgxy6kgxw53s965j8pfc7-sed-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/py1l9h0kxz5pp9cakgd3zdbj3w0jg8pr-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/2wi4vfnf184lic9dc8j3sbdika88hs8q-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a8mjszzaaccjaiawm3i8cvqkwvwng2xk-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/5icarcdc2mmd1lbhdw806906ikzgsy7l-lzip-1.18.tar.gz.drv
/home/pi/code/guix/test-tmp/store/v36w0zp2xxv0cknc23g1fa8cj2abw1vl-ed-1.14.2.tar.lz.drv
/home/pi/code/guix/test-tmp/store/wb0zqwhm5x9nac7qxr9nq7n1776dwkxz-lzip-1.18.drv
/home/pi/code/guix/test-tmp/store/s12dz9yz26df5rpikslzmc1fzzph7fn1-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kfsvv9m6qcm92d7a78i2nj6x85k8cqxp-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/q5xnawx8g1vq8b9lwf7hlg28gbayqbpg-ed-1.14.2.drv
/home/pi/code/guix/test-tmp/store/caw9ki0a3vgy19dkzjrlxi58bbl52yvn-xz-5.2.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/lx3f4h1lnr7skjrbr1y4afzdavbrf4q8-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5qp7q3v80pm9jrivhsmfvx4fslsf1y94-libelf-0.8.13.tar.gz.drv
/home/pi/code/guix/test-tmp/store/1r41zg64li7w53lpzklpqksgps6ry4gx-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/hl36fv9d07yqx7d8q41svap5x3ia6bbw-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/5y8vn8709862wpbwrchff02329b6d1zd-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9lh0vw29hgmdycdw1cpddpjm0a673v6n-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nm66bvx35gf08l6yiljwscpy322vhv1s-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/pp662gsn5jnyig5v05s86ms1wrcgjafm-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/jlyf6amld8mfj0hsij52bvxwvkbfcbim-bash-4.4.12.drv
/home/pi/code/guix/test-tmp/store/lzrq9sd5m5krvlnmh8f42ywjj1nmnznh-zlib-1.2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/42508sc44b7ic3c3x39zbf65rdwahcyx-isl-0.11.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/ri61dc742412v64cdxlr1njbl6h4ayr7-isl-0.11.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y1f2zb5rd26i1dipqi4z56hixd1lhsk6-cloog-0.18.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/03ki26hwrr8nxq25qyizgkm6zhmqhk6w-cloog-0.18.0.drv
/home/pi/code/guix/test-tmp/store/4kxd6addl18mlafp6if9hp2s6b1wym5y-module-import.drv
/home/pi/code/guix/test-tmp/store/bv5hqf0f76scppr65q50jszgyrkh8igr-isl-0.11.1.drv
/home/pi/code/guix/test-tmp/store/c5b3gir8z34zn0vzpyh5l1w2qxnwi7zf-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/g14as7v30win46lvicvf8ncpx29zawq0-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/lgl0szkvn4a54vjly70ls0rn35n0bnp4-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/p20n82s1wimm6nqmm460ikyng522f7bb-ld-wrapper-mips64el-linux-gnu-0.drv
/home/pi/code/guix/test-tmp/store/rv1ssr2mipajpnni5q3fml479smhz41p-libelf-0.8.13.drv
/home/pi/code/guix/test-tmp/store/sdmplb2mmrih8g3588xbra51zin8d2r1-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/x5fsf5gamcpccbk9jn942jmsgm59fcrk-mpc-1.0.3.drv
/home/pi/code/guix/test-tmp/store/xx4b4bb142daspyl291gj2n6ii4lbr52-mpfr-3.1.5.drv
/home/pi/code/guix/test-tmp/store/ib5pvd5pi72l3xlcj22006k2jchjq0l5-gcc-cross-sans-libc-mips64el-linux-gnu-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j4k3ky5k4gn6drw7sqp92pri95j8qhyn-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/4pjpj2an4mjdkrwms2zcy1w87jhg773c-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/bssz4y5xmdh7jvzycjj9vpkwycvqzmv9-bzip2-1.0.6.tar.gz.drv
/home/pi/code/guix/test-tmp/store/9747yi5xjvj477f598iri8zbvjarlj0h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s3p7brz375s1l6rljca75x3hgi81nvpd-readline-7.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kzqzx1g52wgdiq6npc60kmfm4j4ix5v2-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s930xaxx9cwn0v1vd07hhs9b0wk3hfah-ncurses-6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/a5l8dx6k3487qs7j5gj5kgjj7m7224rw-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8v7zhlav1i6g8bl0q78d3m5dqdhyg7yz-libffi-3.2.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/bdm2ycnns668q2p67vgi9s2xag2kx96l-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/7k2ac1whyffzwlk0n3l9j0mfq5lq78lg-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/jy6qjksfscrph3yx4m3jlamfd86kncyg-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/k5x6hnjkz6wsxj3nwp0ss5i7z409pm70-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/nffz7ml39h9mlnjj0jchcgfig28dva9h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/pz2cnzyfwc5lmj04w669ris5bv5x06p1-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/wfqrq6zqin88ai5jcqyb6b70vq93nvl7-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/j08ck3ll4cdax90m1f264yzb0rq4r678-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/whymzms8024q4lkydgxkv51rlc94iwai-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/g4y2gjr8iwm3lzxbshkdgd16vpznja3g-pkg-config-0.29.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/fpr57h5n7m0698gy1j1m60jsv0kdz7dw-libatomic_ops-7.4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/7n90swxncwxcbkylpl7yvbcwyzqn5cpg-gc-7.6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/k5964kprn381dkpi5sikjgpykpbggm57-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/nranf69m0fsi59wgv5hh5ikjb9z84253-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/ll6glb20yamdabxxca7a5m6in3kzprzr-libtool-2.4.6.tar.xz.drv
/home/pi/code/guix/test-tmp/store/4mx43vigc8yk8ms3mqac33d1azk2n3f4-libltdl-2.4.6.drv
/home/pi/code/guix/test-tmp/store/gm2nqpi7grjs2pczpdl5x4hcg92s72bv-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/j47717cq8fb4a6vzi5zncjb559d6pcjz-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/r0ccql5qa3hsfpsaknycyz76z6n6l2cz-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/p8a50i4n9blrb3w246bwq2xx0qkxi481-linux-libre-4.4.47-gnu.tar.xz.drv
/home/pi/code/guix/test-tmp/store/43q8vlipvj4m0sdx4sfnc08hqybkkkk1-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/h7ba8x5yzzdjbwssclxx5r7xkdxjj1n7-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/nxnvfl2vbsafi6863hbiah6fgpww9bml-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nvh26y5xjvg5nm0g4605fplqxx1l5frr-m4-1.4.18.tar.xz.drv
/home/pi/code/guix/test-tmp/store/mfdn2pqp4mma7waf3s46hxmcf3jlql0f-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/pvj16226y8d1313r83b61isf6d7h9qhx-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y4da1d4849iy8b1b2f2sqf08v72kh2gn-libcap-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rx0d5vv7jiliknd9yayjhv667wwd1kan-expat-2.2.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/8zah1nmkad4v02vbpcdbffbyjj3ra0lh-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/sx04dgy519l2071v82xyxddy7d1gcl97-acl-2.2.52.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/jjil12wj45kzqsfr18d84slrww6hq2j6-attr-2.4.47.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/3izmyh79zhgx3vmfgc9h00hfwcdf97mj-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/8gcai03sar21rb9yp1ypywkw2l6l396y-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/bccicspcidkli07h7w4pg6gdmp9p5yxv-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/62s12zyqmcnvhq8akbfjanh2mmpphjax-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8rddn0cnpx4dwm79nizqpy3lh3d6cpyv-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/bva9wbpqyr83my71dlwgcz2xhmm5xl11-libcap-2.25.drv
/home/pi/code/guix/test-tmp/store/jmydrlap7rbj1a2bd70mjv7x3zzsdj3i-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/yczxys0971kbc7q17c97kdk79l50q5cc-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/bgihn0qimfnh0vlwzwhr6kkssv5j1jdx-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8iylq5nvb8zzwmmgqsb6qfazn5c3bv8w-gzip-1.8.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5nywc7njhaigj4agb19qaz4v873yh5cj-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/dz65vwlx3i402i1b4y9rd18pjqddsv4d-module-import.drv
/home/pi/code/guix/test-tmp/store/rc36gckxijd65sfvq77bf03a42fm7yg8-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/1z46cxj3adnzcrqwqmn95q0l8shd8xmm-bash44-010.drv
/home/pi/code/guix/test-tmp/store/4qnb4bxrixdfqra9g7zff752lw8v0a6a-bash44-009.drv
/home/pi/code/guix/test-tmp/store/66xgfb4lga6ca9ss6kxn81sjwm0cd7fb-bash44-007.drv
/home/pi/code/guix/test-tmp/store/82z8ln9pmfmw9zjxm8nqvilz8xxmc4ps-bash44-005.drv
/home/pi/code/guix/test-tmp/store/fxqr4zh789dddfvicgp41frvnjhvsi8h-bash-4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/m4lr284jgwc6v2j2mmdbcf8i6ylywgn5-bash44-001.drv
/home/pi/code/guix/test-tmp/store/ngpna3llgh8agijxy46pn6gnxgsr1qrf-bash44-002.drv
/home/pi/code/guix/test-tmp/store/ny69pxbqm9bdln5h40kyrj5a7hxcma82-bash44-003.drv
/home/pi/code/guix/test-tmp/store/pmj7vy8jf5863iyh9jc68f83x6skjwb8-bash44-008.drv
/home/pi/code/guix/test-tmp/store/vbjhsz7s7kfpd23f8q2sr6wvwbrsi8mz-bash44-012.drv
/home/pi/code/guix/test-tmp/store/vn8g2a6cd4rgwd7wkjarxw2spfpln6wl-bash44-004.drv
/home/pi/code/guix/test-tmp/store/xm7m3vz1yai7w06dxqhyink02z1vb4zy-bash44-011.drv
/home/pi/code/guix/test-tmp/store/zcmrjr4abmbkx5kdcvajs3acwv4aj10j-bash44-006.drv
/home/pi/code/guix/test-tmp/store/vjc9glznsbdgrbgwjn0y3kwnpm4k12nl-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w2x79zdd0xf6vrzvcdqqifxhbcl5hk6p-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wmn9axmml3qw5vgkcjx499hmj84fjyis-glibc-intermediate-2.25.drv
/home/pi/code/guix/test-tmp/store/20m5qyjqahccgq520izld7w640mj8y3b-gcc-5.4.0.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/6aah13lq4a0g1rsj09iw2f0akx9sbxfi-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/syf0qgrpz3nxi8h1psidha7icypzcg5v-gcc-4.9.4.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/5iyk1l8904cx684pgyxvryxzis23qd4c-gcc-4.9.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/010mrb32kjik9rrp6q4xn9ygv4fbj84p-mpfr-3.1.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6cxkaad65jjvbj8qdcryj6hcdpixrph1-libstdc++-boot0-4.9.4.drv
/home/pi/code/guix/test-tmp/store/6kzpa34ac78bl7dqa8ffh8fmm5cblrql-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/xv9sd3nyswibws01p5dd5lk5nbaklahh-mpc-1.0.3.tar.gz.drv
/home/pi/code/guix/test-tmp/store/z9794f6hghq0863mhq4d50ndxl1zsclm-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/96gxpgknqh4xgsj1sdgxcbj233b5cmwb-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/jmnxlxrx9blzm3clqvck5scl4zixgy9q-perl-5.26.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kxk8lgmyrj5hv2vx0w6v42wbay1j6hi2-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s603hf4h1yvi2c1f85a90n4fchc58xw2-gettext-0.19.8.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/01g3pmxi4q5zybg7lmfjcgc19ja5z7na-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a0l869619xfm75mlykwz02bzdalkx6jd-texinfo-6.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/chwc3scj1w3af40yclvpjanz211mb7qr-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/gh6120j4cmm7ji3a12hvaa4vd9n3zvry-gettext-boot0-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/gv3whbx6r9w9mb2hbcmz22bsi47r3fgi-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/gxddbfhgsmxmyyhyb7r2zbah1fbqvygq-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rw63pj62aiwbhfi1zjz92y10zmgx68gf-gcc-cross-boot0-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w3bkdfkkgq2b6wgln2a18mayzia2qz8m-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/8fcgpzakyv0xmqr0a6dg6rrqi23kch5g-libsigsegv-2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/0wky2gc5jlywvnkmk20ijz8rnhrhl3y6-gawk-4.1.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/3fqn41dc9ng8ylxljvn9vpv7pqpx59c2-libsigsegv-2.11.drv
/home/pi/code/guix/test-tmp/store/8x0z65qa197a7swblhphq70lq5k8adm4-binutils-2.28.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/gwnwb9ldkqy0bxg5f1i0jg6yyhsnv5mg-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6lgb9wzc03cksdgc2ib52xlmhglgm94n-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9wsr7w7w8rvs02q63rh73z8g7cby190p-ld-wrapper-boot0-0.drv
/home/pi/code/guix/test-tmp/store/c9s2bwr11wsn6i1v3skqxq3431jrasc4-diffutils-boot0-3.6.drv
/home/pi/code/guix/test-tmp/store/dld8867smzrpyv1dc4wp3w42sygb44jb-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/dlmxhglzzaw0b6pr3h3ngv3g1ksqwg8n-findutils-boot0-4.6.0.drv
/home/pi/code/guix/test-tmp/store/n20ymaf8xw3c8dx1v1996z7yfr2h0c22-binutils-cross-boot0-2.28.drv
/home/pi/code/guix/test-tmp/store/n793p7xk02yldnmdn9zz9kc6nw2ciiif-ld-wrapper-boot3-0.drv
/home/pi/code/guix/test-tmp/store/rikm46m7ygb4w12i1c8hh97lz1fnfifw-file-boot0-5.30.drv
/home/pi/code/guix/test-tmp/store/5njacznalgzy7bqhds31jag7ig6gi831-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/8215npjc46d78j25zq6wavifw27yzrs0-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kbm668ym6zxjdqs0vfslnq9ay7ax76v3-module-import.drv
/home/pi/code/guix/test-tmp/store/08ipl6y3f063zr3893zmvd2kdp62ch7k-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/1ansvvkln0jzd5ikvs7y6mq777h7dg9y-tar-1.29.drv
/home/pi/code/guix/test-tmp/store/1c43qn9aml7l8f61djmlgw0x9ib113lg-gawk-4.1.4.drv
/home/pi/code/guix/test-tmp/store/1jhvvm2yrqmmp0ms0hgd5zibmm1siwsj-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/1zw944az1ynvc9clh12ph18svb4z2i3p-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/361j78mv3mck9cyhn5976y3lrswgqwv5-glibc-utf8-locales-2.25.drv
/home/pi/code/guix/test-tmp/store/3k3icphvhnf0y92ln6ga8g5nhdsyyjxz-diffutils-3.6.drv
/home/pi/code/guix/test-tmp/store/564mswhzbly7z2ydarlw82fr3im06kqc-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/5n7ha4jwdx7zzln65f9cn8ix3chqmrvr-findutils-4.6.0.drv
/home/pi/code/guix/test-tmp/store/6a48ckx02lm0z53xg68r95mmkdfprbhp-module-import.drv
/home/pi/code/guix/test-tmp/store/988drcza1dwr752v63s2zll4hz6fkxjx-binutils-cross-mips64el-linux-gnu-2.28.drv
/home/pi/code/guix/test-tmp/store/9qzsrshmdwddxfkdn5arwr9nbqir9qrd-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/db7l5aam4gnqassvchr8zfdxr9xlq2wi-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/fp6lh1sv3sa73wvs22qjb4gmg15qxpic-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/hgj2606jn61ijvibp53av2c80cx8yppv-linux-libre-headers-4.4.47.drv
/home/pi/code/guix/test-tmp/store/j1kmmcd0cp0h51amyq441h2ahkmn7whp-ld-wrapper-0.drv
/home/pi/code/guix/test-tmp/store/jh279qphzff63hmvily4bhg6c0as5all-make-4.2.1.drv
/home/pi/code/guix/test-tmp/store/mjs00pmjislknl4i98y038z1ir0dgxnz-guile-2.2.2.drv
/home/pi/code/guix/test-tmp/store/nlcjd3pm7w9yyh4g33g6kfz3p0q8b5gp-bzip2-1.0.6.drv
/home/pi/code/guix/test-tmp/store/p4bzb8hcciqmn9s96p2f2rrpg6rp49gm-binutils-2.28.drv
/home/pi/code/guix/test-tmp/store/qjyjxznlgwa8mrpc0ii5mi8yrkp19qkn-linux-libre-headers-cross-mips64el-linux-gnu-4.4.47.drv
/home/pi/code/guix/test-tmp/store/qn0g1g5bipjn6k10pmk5yy92g4v3l4m0-xz-5.2.2.drv
/home/pi/code/guix/test-tmp/store/ri8b5gca2f2h06cxny56w0bbb8a9z86p-patch-2.7.5.drv
/home/pi/code/guix/test-tmp/store/svkck37nskq4nmci56x5bcv7vijalbms-grep-3.0.drv
/home/pi/code/guix/test-tmp/store/vmfh0lskxhaa2pidf5m68gk4dafr9jpn-sed-4.4.drv
/home/pi/code/guix/test-tmp/store/vrnzy86r2f1si799d0r9ncbf4hbj0jzh-gcc-5.4.0.drv
/home/pi/code/guix/test-tmp/store/vzwqsiihk8sc17cb6lxiwxrfgg7mxs1h-gcc-cross-mips64el-linux-gnu-5.4.0.drv
/home/pi/code/guix/test-tmp/store/wzyrar2gzrhqqxbhgdyj58295y8flpv1-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/y14hiv7g7wgpfnly5kkl5diwly2yj700-glibc-cross-mips64el-linux-gnu-2.25.drv
/home/pi/code/guix/test-tmp/store/z9if03n7l35xqb1py8cpv8db95skvc2a-file-5.30.drv
++ guix build guix --with-input=guile@2.0=guile@2.2 -d
accepted connection from pid 18666, user pi
random seed for tests: 1518713052
guix build: warning: ambiguous package specification `guile@2.2'
guix build: warning: choosing guile@2.2.3 from gnu/packages/guile.scm:259:2
+ drv1=/home/pi/code/guix/test-tmp/store/m8nzxc8cd4srqwq0qbnf7l26yz6k93wi-guix-0.14.0-8.bc880f9.drv
++ guix build guix -d
accepted connection from pid 20186, user pi
random seed for tests: 1518714513
+ drv2=/home/pi/code/guix/test-tmp/store/07z0zbsivjd28qvxw3n5w8y9ivlw2ldm-guix-0.14.0-8.bc880f9.drv
+ test /home/pi/code/guix/test-tmp/store/m8nzxc8cd4srqwq0qbnf7l26yz6k93wi-guix-0.14.0-8.bc880f9.drv '!=' /home/pi/code/guix/test-tmp/store/07z0zbsivjd28qvxw3n5w8y9ivlw2ldm-guix-0.14.0-8.bc880f9.drv
++ guix build guile -d
accepted connection from pid 21217, user pi
random seed for tests: 1518707328
+ drv1=/home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv
++ guix build guile --with-input=gimp=ruby -d
accepted connection from pid 22496, user pi
random seed for tests: 1518708631
+ drv2=/home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv
+ test /home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv = /home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv
+ guix build guile --with-input=libunistring=something-really-silly
accepted connection from pid 22804, user pi
random seed for tests: 1518709149
guix build: error: something-really-silly: unknown package
+ true
++ guix build superseded -d
accepted connection from pid 22991, user pi
random seed for tests: 1518709083
guix build: package 'superseded' has been superseded by 'bar'
++ guix build bar -d
accepted connection from pid 23282, user pi
random seed for tests: 1518709358
+ test /home/pi/code/guix/test-tmp/store/y6l76g4i1m2q0ckliw4941x4sa0wa24w-bar-9001.drv = ''
+ rm -rf t-guix-build-10577
FAIL tests/guix-build.sh (exit status: 1)
FAIL: tests/guix-package
========================
+ guix package --version
guix package (GNU Guix) 0.14.0.1872-7e0a6
Copyright (C) 2018 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
+ module_dir=t-guix-package-11262
+ profile=t-profile-11262
+ tmpfile=t-guix-package-file-11262
+ rm -f t-profile-11262 t-guix-package-file-11262
+ trap 'rm -f "$profile" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-11262' EXIT
+ guix package --bootstrap -e +
guix package: error: expression "+" does not evaluate to a package
+ true
++ guix build guile-bootstrap
accepted connection from pid 11413, user pi
+ guix package --bootstrap -p t-profile-11262 -i /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
accepted connection from pid 11731, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be installed:
guile-bootstrap 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
The following derivation will be built:
/home/pi/code/guix/test-tmp/store/g8ishw0hl1l31hm8xgkid365am0r37lf-profile.drv
1 package in profile
The following environment variable definitions may be needed:
export PATH="t-profile-11262/bin${PATH:+:}$PATH"
++ cut -f 1-2
++ guix package -A guile-bootstrap
++ cut -f 1-2
++ guix package -p t-profile-11262 -I
+ test 'guile-bootstrap 2.0' = 'guile-bootstrap 2.0'
++ cut -f 3
++ guix package -p t-profile-11262 -I
+ test out = out
+ rm t-profile-11262
+ guix package --bootstrap -p t-profile-11262 -i guile-bootstrap
accepted connection from pid 12896, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be installed:
guile-bootstrap 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
1 package in profile
The following environment variable definitions may be needed:
export PATH="t-profile-11262/bin${PATH:+:}$PATH"
+ test -L t-profile-11262
+ test -L t-profile-11262-1-link
+ test -f t-profile-11262/bin/guile
+ guix gc --list-live
++ readlink t-profile-11262-1-link
+ grep /home/pi/code/guix/test-tmp/store/v7idq6r1w6hwrvxpkl81cb6z3xlxzcib-profile
accepted connection from pid 13049, user pi
finding garbage collector roots...
determining live/dead paths...
/home/pi/code/guix/test-tmp/store/v7idq6r1w6hwrvxpkl81cb6z3xlxzcib-profile
+ guix package --bootstrap -p t-profile-11262 -i guile-bootstrap
accepted connection from pid 13703, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be upgraded:
guile-bootstrap 2.0 → 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
nothing to be done
+ test -L t-profile-11262
+ test -L t-profile-11262-1-link
+ test -f t-profile-11262-2-link
+ test -f t-profile-11262/bin/guile
+ guix package -p t-profile-11262 --search-paths
export PATH="t-profile-11262/bin"
+ guix package -p t-profile-11262 --search-paths
+ grep '^export PATH='
export PATH="t-profile-11262/bin"
++ wc -l
++ guix package -p t-profile-11262 --search-paths
+ test 1 = 1
+ set -e
+ set -x
++ guix package --search-paths=prefix -p /home/pi/code/guix/t-profile-11262
+ eval export 'PATH="/home/pi/code/guix/t-profile-11262/bin${PATH:+:}$PATH"'
++ export PATH=/home/pi/code/guix/t-profile-11262/bin:/home/pi/code/guix/scripts:/home/pi/code/guix:/home/pi/bin:/home/pi/.guix-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/sbin:/home/pi/bin:/home/pi/.guix-profile/bin:/home/pi/bin:/home/pi/.guix-profile/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
++ PATH=/home/pi/code/guix/t-profile-11262/bin:/home/pi/code/guix/scripts:/home/pi/code/guix:/home/pi/bin:/home/pi/.guix-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/sbin:/home/pi/bin:/home/pi/.guix-profile/bin:/home/pi/bin:/home/pi/.guix-profile/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
++ type -P guile
+ test /home/pi/code/guix/t-profile-11262/bin/guile = /home/pi/code/guix/t-profile-11262/bin/guile
+ type -P rm
/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin/rm
+ guix package -p t-profile-11262 --delete-generations=42
accepted connection from pid 14511, user pi
guix package: error: no matching generation
+ true
+ guix package -p t-profile-11262 --delete-generations=0
accepted connection from pid 15165, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
+ guix package --bootstrap -i guile gcc -p t-profile-11262 -n
accepted connection from pid 15804, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following packages would be installed:
guile 2.2.3 /home/pi/code/guix/test-tmp/store/nlr87kcpnrhk932lk4zzqcd17b588sri-guile-2.2.3
gcc 7.3.0 /home/pi/code/guix/test-tmp/store/kwb8mznagmvq9lvfq5dcx264am5qka36-gcc-7.3.0
substitute: warning: authentication and authorization of substitutes disabled!
substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable
The following derivations would be built:
/home/pi/code/guix/test-tmp/store/w25crzdnnfddwygmsp1g6app8jl3hqag-profile.drv
/home/pi/code/guix/test-tmp/store/rwhm2ass38m1wvi2mi3996bd7v0r1hcs-gcc-7.3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5qp7q3v80pm9jrivhsmfvx4fslsf1y94-libelf-0.8.13.tar.gz.drv
/home/pi/code/guix/test-tmp/store/hp0xi0k8v64rr6lwc2yqrjc72i9ixxhb-procps-ng-3.3.12.tar.xz.drv
/home/pi/code/guix/test-tmp/store/lx3f4h1lnr7skjrbr1y4afzdavbrf4q8-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/j4k3ky5k4gn6drw7sqp92pri95j8qhyn-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/kqj8v27rlamdsc6jkzr6n523ffwlkkc5-procps-3.3.12.drv
/home/pi/code/guix/test-tmp/store/nhcyypgn31dwj1zr1kvbdkzgnq6g4wpj-isl-0.18.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/9gsn1v15spl5jys802h7d4lprwwq7qdp-isl-0.18.drv
/home/pi/code/guix/test-tmp/store/g14as7v30win46lvicvf8ncpx29zawq0-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/in11cxbvahj8h40hdk7g4x2mrarsh2bz-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/rv1ssr2mipajpnni5q3fml479smhz41p-libelf-0.8.13.drv
/home/pi/code/guix/test-tmp/store/x5fsf5gamcpccbk9jn942jmsgm59fcrk-mpc-1.0.3.drv
/home/pi/code/guix/test-tmp/store/xx4b4bb142daspyl291gj2n6ii4lbr52-mpfr-3.1.5.drv
/home/pi/code/guix/test-tmp/store/ypqj62frlixjcibr5l1wr8q6746aciiq-gcc-7.3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/x5hbrhm3yy8pyzz78fbcimyfnj5ln4f3-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/rx66ib8v7rlv6941y3kag75p17p54371-guile-2.2.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9lh0vw29hgmdycdw1cpddpjm0a673v6n-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/1r41zg64li7w53lpzklpqksgps6ry4gx-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5y8vn8709862wpbwrchff02329b6d1zd-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/qy6ia1m2k3m7n2kbgvlial107hvs8vkw-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/cbqfxpi9nq079mhx490zy3k4fv1mc13k-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/hl36fv9d07yqx7d8q41svap5x3ia6bbw-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/nm66bvx35gf08l6yiljwscpy322vhv1s-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/pp662gsn5jnyig5v05s86ms1wrcgjafm-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/rrix9i368qha9p96ipq861516yw4pg5a-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/yw9dv5ii86gak7a39vzq36in1yv3ggay-guile-2.2.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/43q8vlipvj4m0sdx4sfnc08hqybkkkk1-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/h7ba8x5yzzdjbwssclxx5r7xkdxjj1n7-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/lzrq9sd5m5krvlnmh8f42ywjj1nmnznh-zlib-1.2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/47wpi64k47rxrx07cp4bswamcxwnmwfq-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/sh9xiz29vn933nqv4a0ki23x6bmfhcrb-libstdc++-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j6aw9ksgniahgxy6kgxw53s965j8pfc7-sed-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/py1l9h0kxz5pp9cakgd3zdbj3w0jg8pr-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/2wi4vfnf184lic9dc8j3sbdika88hs8q-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a8mjszzaaccjaiawm3i8cvqkwvwng2xk-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/5icarcdc2mmd1lbhdw806906ikzgsy7l-lzip-1.18.tar.gz.drv
/home/pi/code/guix/test-tmp/store/v36w0zp2xxv0cknc23g1fa8cj2abw1vl-ed-1.14.2.tar.lz.drv
/home/pi/code/guix/test-tmp/store/wb0zqwhm5x9nac7qxr9nq7n1776dwkxz-lzip-1.18.drv
/home/pi/code/guix/test-tmp/store/s12dz9yz26df5rpikslzmc1fzzph7fn1-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kfsvv9m6qcm92d7a78i2nj6x85k8cqxp-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/q5xnawx8g1vq8b9lwf7hlg28gbayqbpg-ed-1.14.2.drv
/home/pi/code/guix/test-tmp/store/caw9ki0a3vgy19dkzjrlxi58bbl52yvn-xz-5.2.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/4pjpj2an4mjdkrwms2zcy1w87jhg773c-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/bssz4y5xmdh7jvzycjj9vpkwycvqzmv9-bzip2-1.0.6.tar.gz.drv
/home/pi/code/guix/test-tmp/store/9747yi5xjvj477f598iri8zbvjarlj0h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s3p7brz375s1l6rljca75x3hgi81nvpd-readline-7.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kzqzx1g52wgdiq6npc60kmfm4j4ix5v2-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s930xaxx9cwn0v1vd07hhs9b0wk3hfah-ncurses-6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/a5l8dx6k3487qs7j5gj5kgjj7m7224rw-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8v7zhlav1i6g8bl0q78d3m5dqdhyg7yz-libffi-3.2.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/bdm2ycnns668q2p67vgi9s2xag2kx96l-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/7k2ac1whyffzwlk0n3l9j0mfq5lq78lg-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/jy6qjksfscrph3yx4m3jlamfd86kncyg-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/k5x6hnjkz6wsxj3nwp0ss5i7z409pm70-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/nffz7ml39h9mlnjj0jchcgfig28dva9h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/pz2cnzyfwc5lmj04w669ris5bv5x06p1-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/j08ck3ll4cdax90m1f264yzb0rq4r678-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/whymzms8024q4lkydgxkv51rlc94iwai-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/g4y2gjr8iwm3lzxbshkdgd16vpznja3g-pkg-config-0.29.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/fpr57h5n7m0698gy1j1m60jsv0kdz7dw-libatomic_ops-7.4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/7n90swxncwxcbkylpl7yvbcwyzqn5cpg-gc-7.6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/k5964kprn381dkpi5sikjgpykpbggm57-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/nranf69m0fsi59wgv5hh5ikjb9z84253-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/ll6glb20yamdabxxca7a5m6in3kzprzr-libtool-2.4.6.tar.xz.drv
/home/pi/code/guix/test-tmp/store/4mx43vigc8yk8ms3mqac33d1azk2n3f4-libltdl-2.4.6.drv
/home/pi/code/guix/test-tmp/store/gm2nqpi7grjs2pczpdl5x4hcg92s72bv-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/j47717cq8fb4a6vzi5zncjb559d6pcjz-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/r0ccql5qa3hsfpsaknycyz76z6n6l2cz-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/p8a50i4n9blrb3w246bwq2xx0qkxi481-linux-libre-4.4.47-gnu.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5njacznalgzy7bqhds31jag7ig6gi831-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/kbm668ym6zxjdqs0vfslnq9ay7ax76v3-module-import.drv
/home/pi/code/guix/test-tmp/store/wfqrq6zqin88ai5jcqyb6b70vq93nvl7-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nxnvfl2vbsafi6863hbiah6fgpww9bml-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nvh26y5xjvg5nm0g4605fplqxx1l5frr-m4-1.4.18.tar.xz.drv
/home/pi/code/guix/test-tmp/store/mfdn2pqp4mma7waf3s46hxmcf3jlql0f-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/pvj16226y8d1313r83b61isf6d7h9qhx-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y4da1d4849iy8b1b2f2sqf08v72kh2gn-libcap-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rx0d5vv7jiliknd9yayjhv667wwd1kan-expat-2.2.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/8zah1nmkad4v02vbpcdbffbyjj3ra0lh-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/sx04dgy519l2071v82xyxddy7d1gcl97-acl-2.2.52.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/jjil12wj45kzqsfr18d84slrww6hq2j6-attr-2.4.47.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/3izmyh79zhgx3vmfgc9h00hfwcdf97mj-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/8gcai03sar21rb9yp1ypywkw2l6l396y-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/bccicspcidkli07h7w4pg6gdmp9p5yxv-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/8215npjc46d78j25zq6wavifw27yzrs0-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/62s12zyqmcnvhq8akbfjanh2mmpphjax-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8rddn0cnpx4dwm79nizqpy3lh3d6cpyv-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/bva9wbpqyr83my71dlwgcz2xhmm5xl11-libcap-2.25.drv
/home/pi/code/guix/test-tmp/store/jmydrlap7rbj1a2bd70mjv7x3zzsdj3i-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/yczxys0971kbc7q17c97kdk79l50q5cc-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/8iylq5nvb8zzwmmgqsb6qfazn5c3bv8w-gzip-1.8.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5nywc7njhaigj4agb19qaz4v873yh5cj-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/dz65vwlx3i402i1b4y9rd18pjqddsv4d-module-import.drv
/home/pi/code/guix/test-tmp/store/rc36gckxijd65sfvq77bf03a42fm7yg8-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/1z46cxj3adnzcrqwqmn95q0l8shd8xmm-bash44-010.drv
/home/pi/code/guix/test-tmp/store/4qnb4bxrixdfqra9g7zff752lw8v0a6a-bash44-009.drv
/home/pi/code/guix/test-tmp/store/66xgfb4lga6ca9ss6kxn81sjwm0cd7fb-bash44-007.drv
/home/pi/code/guix/test-tmp/store/82z8ln9pmfmw9zjxm8nqvilz8xxmc4ps-bash44-005.drv
/home/pi/code/guix/test-tmp/store/fxqr4zh789dddfvicgp41frvnjhvsi8h-bash-4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/m4lr284jgwc6v2j2mmdbcf8i6ylywgn5-bash44-001.drv
/home/pi/code/guix/test-tmp/store/ngpna3llgh8agijxy46pn6gnxgsr1qrf-bash44-002.drv
/home/pi/code/guix/test-tmp/store/ny69pxbqm9bdln5h40kyrj5a7hxcma82-bash44-003.drv
/home/pi/code/guix/test-tmp/store/pmj7vy8jf5863iyh9jc68f83x6skjwb8-bash44-008.drv
/home/pi/code/guix/test-tmp/store/vbjhsz7s7kfpd23f8q2sr6wvwbrsi8mz-bash44-012.drv
/home/pi/code/guix/test-tmp/store/vn8g2a6cd4rgwd7wkjarxw2spfpln6wl-bash44-004.drv
/home/pi/code/guix/test-tmp/store/xm7m3vz1yai7w06dxqhyink02z1vb4zy-bash44-011.drv
/home/pi/code/guix/test-tmp/store/zcmrjr4abmbkx5kdcvajs3acwv4aj10j-bash44-006.drv
/home/pi/code/guix/test-tmp/store/vjc9glznsbdgrbgwjn0y3kwnpm4k12nl-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w2x79zdd0xf6vrzvcdqqifxhbcl5hk6p-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wmn9axmml3qw5vgkcjx499hmj84fjyis-glibc-intermediate-2.25.drv
/home/pi/code/guix/test-tmp/store/20m5qyjqahccgq520izld7w640mj8y3b-gcc-5.4.0.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/6aah13lq4a0g1rsj09iw2f0akx9sbxfi-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/syf0qgrpz3nxi8h1psidha7icypzcg5v-gcc-4.9.4.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/5iyk1l8904cx684pgyxvryxzis23qd4c-gcc-4.9.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/010mrb32kjik9rrp6q4xn9ygv4fbj84p-mpfr-3.1.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6cxkaad65jjvbj8qdcryj6hcdpixrph1-libstdc++-boot0-4.9.4.drv
/home/pi/code/guix/test-tmp/store/6kzpa34ac78bl7dqa8ffh8fmm5cblrql-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/xv9sd3nyswibws01p5dd5lk5nbaklahh-mpc-1.0.3.tar.gz.drv
/home/pi/code/guix/test-tmp/store/z9794f6hghq0863mhq4d50ndxl1zsclm-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/96gxpgknqh4xgsj1sdgxcbj233b5cmwb-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/jmnxlxrx9blzm3clqvck5scl4zixgy9q-perl-5.26.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kxk8lgmyrj5hv2vx0w6v42wbay1j6hi2-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s603hf4h1yvi2c1f85a90n4fchc58xw2-gettext-0.19.8.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/01g3pmxi4q5zybg7lmfjcgc19ja5z7na-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a0l869619xfm75mlykwz02bzdalkx6jd-texinfo-6.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/chwc3scj1w3af40yclvpjanz211mb7qr-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/gh6120j4cmm7ji3a12hvaa4vd9n3zvry-gettext-boot0-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/gv3whbx6r9w9mb2hbcmz22bsi47r3fgi-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/gxddbfhgsmxmyyhyb7r2zbah1fbqvygq-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rw63pj62aiwbhfi1zjz92y10zmgx68gf-gcc-cross-boot0-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w3bkdfkkgq2b6wgln2a18mayzia2qz8m-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/8fcgpzakyv0xmqr0a6dg6rrqi23kch5g-libsigsegv-2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/0wky2gc5jlywvnkmk20ijz8rnhrhl3y6-gawk-4.1.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/3fqn41dc9ng8ylxljvn9vpv7pqpx59c2-libsigsegv-2.11.drv
/home/pi/code/guix/test-tmp/store/8x0z65qa197a7swblhphq70lq5k8adm4-binutils-2.28.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/gwnwb9ldkqy0bxg5f1i0jg6yyhsnv5mg-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6lgb9wzc03cksdgc2ib52xlmhglgm94n-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9wsr7w7w8rvs02q63rh73z8g7cby190p-ld-wrapper-boot0-0.drv
/home/pi/code/guix/test-tmp/store/c9s2bwr11wsn6i1v3skqxq3431jrasc4-diffutils-boot0-3.6.drv
/home/pi/code/guix/test-tmp/store/dld8867smzrpyv1dc4wp3w42sygb44jb-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/dlmxhglzzaw0b6pr3h3ngv3g1ksqwg8n-findutils-boot0-4.6.0.drv
/home/pi/code/guix/test-tmp/store/n20ymaf8xw3c8dx1v1996z7yfr2h0c22-binutils-cross-boot0-2.28.drv
/home/pi/code/guix/test-tmp/store/n793p7xk02yldnmdn9zz9kc6nw2ciiif-ld-wrapper-boot3-0.drv
/home/pi/code/guix/test-tmp/store/rikm46m7ygb4w12i1c8hh97lz1fnfifw-file-boot0-5.30.drv
/home/pi/code/guix/test-tmp/store/1ansvvkln0jzd5ikvs7y6mq777h7dg9y-tar-1.29.drv
/home/pi/code/guix/test-tmp/store/1c43qn9aml7l8f61djmlgw0x9ib113lg-gawk-4.1.4.drv
/home/pi/code/guix/test-tmp/store/1jhvvm2yrqmmp0ms0hgd5zibmm1siwsj-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/1zw944az1ynvc9clh12ph18svb4z2i3p-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/361j78mv3mck9cyhn5976y3lrswgqwv5-glibc-utf8-locales-2.25.drv
/home/pi/code/guix/test-tmp/store/3k3icphvhnf0y92ln6ga8g5nhdsyyjxz-diffutils-3.6.drv
/home/pi/code/guix/test-tmp/store/564mswhzbly7z2ydarlw82fr3im06kqc-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/5n7ha4jwdx7zzln65f9cn8ix3chqmrvr-findutils-4.6.0.drv
/home/pi/code/guix/test-tmp/store/6a48ckx02lm0z53xg68r95mmkdfprbhp-module-import.drv
/home/pi/code/guix/test-tmp/store/9qzsrshmdwddxfkdn5arwr9nbqir9qrd-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/cgdlblnxf1zwaq4hw6gkmivppn65f85y-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/fp6lh1sv3sa73wvs22qjb4gmg15qxpic-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/hgj2606jn61ijvibp53av2c80cx8yppv-linux-libre-headers-4.4.47.drv
/home/pi/code/guix/test-tmp/store/j1kmmcd0cp0h51amyq441h2ahkmn7whp-ld-wrapper-0.drv
/home/pi/code/guix/test-tmp/store/jh279qphzff63hmvily4bhg6c0as5all-make-4.2.1.drv
/home/pi/code/guix/test-tmp/store/mjs00pmjislknl4i98y038z1ir0dgxnz-guile-2.2.2.drv
/home/pi/code/guix/test-tmp/store/nlcjd3pm7w9yyh4g33g6kfz3p0q8b5gp-bzip2-1.0.6.drv
/home/pi/code/guix/test-tmp/store/p4bzb8hcciqmn9s96p2f2rrpg6rp49gm-binutils-2.28.drv
/home/pi/code/guix/test-tmp/store/qn0g1g5bipjn6k10pmk5yy92g4v3l4m0-xz-5.2.2.drv
/home/pi/code/guix/test-tmp/store/ri8b5gca2f2h06cxny56w0bbb8a9z86p-patch-2.7.5.drv
/home/pi/code/guix/test-tmp/store/svkck37nskq4nmci56x5bcv7vijalbms-grep-3.0.drv
/home/pi/code/guix/test-tmp/store/vmfh0lskxhaa2pidf5m68gk4dafr9jpn-sed-4.4.drv
/home/pi/code/guix/test-tmp/store/vrnzy86r2f1si799d0r9ncbf4hbj0jzh-gcc-5.4.0.drv
/home/pi/code/guix/test-tmp/store/z9if03n7l35xqb1py8cpv8db95skvc2a-file-5.30.drv
/home/pi/code/guix/test-tmp/store/8g1a3j7ymgi11pjhw84zgkfsszjf8l8p-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/c5b3gir8z34zn0vzpyh5l1w2qxnwi7zf-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv
/home/pi/code/guix/test-tmp/store/hzpf137naf7bs4jfm4ig3wk0idqx4z0a-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/jbqyjnci48dilni9000laqcfsv4171yn-gcc-7.3.0.drv
/home/pi/code/guix/test-tmp/store/yb10wcy18f2glgyi4crawm4kim1b6vvm-libltdl-2.4.6.drv
+ guix package --bootstrap -i glibc:debug -p t-profile-11262 -n
accepted connection from pid 16774, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package would be installed:
glibc:debug 2.25 /home/pi/code/guix/test-tmp/store/gvx55mpa6kw3mv26wjihrsg3dih2kzmd-glibc-2.25-debug
substitute: warning: authentication and authorization of substitutes disabled!
substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable
The following derivations would be built:
/home/pi/code/guix/test-tmp/store/1f1rdhqp5b9z6v13nq5v62f206r3hj75-profile.drv
/home/pi/code/guix/test-tmp/store/lzrq9sd5m5krvlnmh8f42ywjj1nmnznh-zlib-1.2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/47wpi64k47rxrx07cp4bswamcxwnmwfq-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/sh9xiz29vn933nqv4a0ki23x6bmfhcrb-libstdc++-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j6aw9ksgniahgxy6kgxw53s965j8pfc7-sed-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/py1l9h0kxz5pp9cakgd3zdbj3w0jg8pr-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/2wi4vfnf184lic9dc8j3sbdika88hs8q-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a8mjszzaaccjaiawm3i8cvqkwvwng2xk-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/5icarcdc2mmd1lbhdw806906ikzgsy7l-lzip-1.18.tar.gz.drv
/home/pi/code/guix/test-tmp/store/v36w0zp2xxv0cknc23g1fa8cj2abw1vl-ed-1.14.2.tar.lz.drv
/home/pi/code/guix/test-tmp/store/wb0zqwhm5x9nac7qxr9nq7n1776dwkxz-lzip-1.18.drv
/home/pi/code/guix/test-tmp/store/s12dz9yz26df5rpikslzmc1fzzph7fn1-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kfsvv9m6qcm92d7a78i2nj6x85k8cqxp-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/q5xnawx8g1vq8b9lwf7hlg28gbayqbpg-ed-1.14.2.drv
/home/pi/code/guix/test-tmp/store/caw9ki0a3vgy19dkzjrlxi58bbl52yvn-xz-5.2.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/4pjpj2an4mjdkrwms2zcy1w87jhg773c-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/bssz4y5xmdh7jvzycjj9vpkwycvqzmv9-bzip2-1.0.6.tar.gz.drv
/home/pi/code/guix/test-tmp/store/9747yi5xjvj477f598iri8zbvjarlj0h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s3p7brz375s1l6rljca75x3hgi81nvpd-readline-7.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kzqzx1g52wgdiq6npc60kmfm4j4ix5v2-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a5l8dx6k3487qs7j5gj5kgjj7m7224rw-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8v7zhlav1i6g8bl0q78d3m5dqdhyg7yz-libffi-3.2.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/bdm2ycnns668q2p67vgi9s2xag2kx96l-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/7k2ac1whyffzwlk0n3l9j0mfq5lq78lg-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/jy6qjksfscrph3yx4m3jlamfd86kncyg-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/k5x6hnjkz6wsxj3nwp0ss5i7z409pm70-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/nffz7ml39h9mlnjj0jchcgfig28dva9h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/pz2cnzyfwc5lmj04w669ris5bv5x06p1-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/lx3f4h1lnr7skjrbr1y4afzdavbrf4q8-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wfqrq6zqin88ai5jcqyb6b70vq93nvl7-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/j08ck3ll4cdax90m1f264yzb0rq4r678-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/whymzms8024q4lkydgxkv51rlc94iwai-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/fpr57h5n7m0698gy1j1m60jsv0kdz7dw-libatomic_ops-7.4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/7n90swxncwxcbkylpl7yvbcwyzqn5cpg-gc-7.6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/k5964kprn381dkpi5sikjgpykpbggm57-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/nranf69m0fsi59wgv5hh5ikjb9z84253-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/ll6glb20yamdabxxca7a5m6in3kzprzr-libtool-2.4.6.tar.xz.drv
/home/pi/code/guix/test-tmp/store/4mx43vigc8yk8ms3mqac33d1azk2n3f4-libltdl-2.4.6.drv
/home/pi/code/guix/test-tmp/store/gm2nqpi7grjs2pczpdl5x4hcg92s72bv-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/j47717cq8fb4a6vzi5zncjb559d6pcjz-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/r0ccql5qa3hsfpsaknycyz76z6n6l2cz-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/g4y2gjr8iwm3lzxbshkdgd16vpznja3g-pkg-config-0.29.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/s930xaxx9cwn0v1vd07hhs9b0wk3hfah-ncurses-6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/1r41zg64li7w53lpzklpqksgps6ry4gx-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/hl36fv9d07yqx7d8q41svap5x3ia6bbw-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/hp0xi0k8v64rr6lwc2yqrjc72i9ixxhb-procps-ng-3.3.12.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kqj8v27rlamdsc6jkzr6n523ffwlkkc5-procps-3.3.12.drv
/home/pi/code/guix/test-tmp/store/pp662gsn5jnyig5v05s86ms1wrcgjafm-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/flzsb5jpdnzz6m4vc4rih0z09kj6ziay-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/psf7p9336sppa96mv7z87iyybi0ijldz-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/p8a50i4n9blrb3w246bwq2xx0qkxi481-linux-libre-4.4.47-gnu.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5njacznalgzy7bqhds31jag7ig6gi831-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/kbm668ym6zxjdqs0vfslnq9ay7ax76v3-module-import.drv
/home/pi/code/guix/test-tmp/store/9lh0vw29hgmdycdw1cpddpjm0a673v6n-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nxnvfl2vbsafi6863hbiah6fgpww9bml-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nvh26y5xjvg5nm0g4605fplqxx1l5frr-m4-1.4.18.tar.xz.drv
/home/pi/code/guix/test-tmp/store/mfdn2pqp4mma7waf3s46hxmcf3jlql0f-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/pvj16226y8d1313r83b61isf6d7h9qhx-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y4da1d4849iy8b1b2f2sqf08v72kh2gn-libcap-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rx0d5vv7jiliknd9yayjhv667wwd1kan-expat-2.2.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/8zah1nmkad4v02vbpcdbffbyjj3ra0lh-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/sx04dgy519l2071v82xyxddy7d1gcl97-acl-2.2.52.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/jjil12wj45kzqsfr18d84slrww6hq2j6-attr-2.4.47.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/3izmyh79zhgx3vmfgc9h00hfwcdf97mj-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/8gcai03sar21rb9yp1ypywkw2l6l396y-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/bccicspcidkli07h7w4pg6gdmp9p5yxv-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/8215npjc46d78j25zq6wavifw27yzrs0-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/62s12zyqmcnvhq8akbfjanh2mmpphjax-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8rddn0cnpx4dwm79nizqpy3lh3d6cpyv-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/bva9wbpqyr83my71dlwgcz2xhmm5xl11-libcap-2.25.drv
/home/pi/code/guix/test-tmp/store/jmydrlap7rbj1a2bd70mjv7x3zzsdj3i-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/yczxys0971kbc7q17c97kdk79l50q5cc-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/8iylq5nvb8zzwmmgqsb6qfazn5c3bv8w-gzip-1.8.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5nywc7njhaigj4agb19qaz4v873yh5cj-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/dz65vwlx3i402i1b4y9rd18pjqddsv4d-module-import.drv
/home/pi/code/guix/test-tmp/store/rc36gckxijd65sfvq77bf03a42fm7yg8-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/1z46cxj3adnzcrqwqmn95q0l8shd8xmm-bash44-010.drv
/home/pi/code/guix/test-tmp/store/4qnb4bxrixdfqra9g7zff752lw8v0a6a-bash44-009.drv
/home/pi/code/guix/test-tmp/store/66xgfb4lga6ca9ss6kxn81sjwm0cd7fb-bash44-007.drv
/home/pi/code/guix/test-tmp/store/82z8ln9pmfmw9zjxm8nqvilz8xxmc4ps-bash44-005.drv
/home/pi/code/guix/test-tmp/store/fxqr4zh789dddfvicgp41frvnjhvsi8h-bash-4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/m4lr284jgwc6v2j2mmdbcf8i6ylywgn5-bash44-001.drv
/home/pi/code/guix/test-tmp/store/ngpna3llgh8agijxy46pn6gnxgsr1qrf-bash44-002.drv
/home/pi/code/guix/test-tmp/store/ny69pxbqm9bdln5h40kyrj5a7hxcma82-bash44-003.drv
/home/pi/code/guix/test-tmp/store/pmj7vy8jf5863iyh9jc68f83x6skjwb8-bash44-008.drv
/home/pi/code/guix/test-tmp/store/vbjhsz7s7kfpd23f8q2sr6wvwbrsi8mz-bash44-012.drv
/home/pi/code/guix/test-tmp/store/vn8g2a6cd4rgwd7wkjarxw2spfpln6wl-bash44-004.drv
/home/pi/code/guix/test-tmp/store/xm7m3vz1yai7w06dxqhyink02z1vb4zy-bash44-011.drv
/home/pi/code/guix/test-tmp/store/zcmrjr4abmbkx5kdcvajs3acwv4aj10j-bash44-006.drv
/home/pi/code/guix/test-tmp/store/vjc9glznsbdgrbgwjn0y3kwnpm4k12nl-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w2x79zdd0xf6vrzvcdqqifxhbcl5hk6p-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wmn9axmml3qw5vgkcjx499hmj84fjyis-glibc-intermediate-2.25.drv
/home/pi/code/guix/test-tmp/store/20m5qyjqahccgq520izld7w640mj8y3b-gcc-5.4.0.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/6aah13lq4a0g1rsj09iw2f0akx9sbxfi-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/syf0qgrpz3nxi8h1psidha7icypzcg5v-gcc-4.9.4.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/5iyk1l8904cx684pgyxvryxzis23qd4c-gcc-4.9.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/010mrb32kjik9rrp6q4xn9ygv4fbj84p-mpfr-3.1.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6cxkaad65jjvbj8qdcryj6hcdpixrph1-libstdc++-boot0-4.9.4.drv
/home/pi/code/guix/test-tmp/store/6kzpa34ac78bl7dqa8ffh8fmm5cblrql-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/xv9sd3nyswibws01p5dd5lk5nbaklahh-mpc-1.0.3.tar.gz.drv
/home/pi/code/guix/test-tmp/store/z9794f6hghq0863mhq4d50ndxl1zsclm-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/96gxpgknqh4xgsj1sdgxcbj233b5cmwb-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/jmnxlxrx9blzm3clqvck5scl4zixgy9q-perl-5.26.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kxk8lgmyrj5hv2vx0w6v42wbay1j6hi2-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s603hf4h1yvi2c1f85a90n4fchc58xw2-gettext-0.19.8.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/01g3pmxi4q5zybg7lmfjcgc19ja5z7na-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a0l869619xfm75mlykwz02bzdalkx6jd-texinfo-6.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/chwc3scj1w3af40yclvpjanz211mb7qr-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/gh6120j4cmm7ji3a12hvaa4vd9n3zvry-gettext-boot0-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/gv3whbx6r9w9mb2hbcmz22bsi47r3fgi-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/gxddbfhgsmxmyyhyb7r2zbah1fbqvygq-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rw63pj62aiwbhfi1zjz92y10zmgx68gf-gcc-cross-boot0-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w3bkdfkkgq2b6wgln2a18mayzia2qz8m-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/8fcgpzakyv0xmqr0a6dg6rrqi23kch5g-libsigsegv-2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/0wky2gc5jlywvnkmk20ijz8rnhrhl3y6-gawk-4.1.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/3fqn41dc9ng8ylxljvn9vpv7pqpx59c2-libsigsegv-2.11.drv
/home/pi/code/guix/test-tmp/store/8x0z65qa197a7swblhphq70lq5k8adm4-binutils-2.28.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/gwnwb9ldkqy0bxg5f1i0jg6yyhsnv5mg-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6lgb9wzc03cksdgc2ib52xlmhglgm94n-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9wsr7w7w8rvs02q63rh73z8g7cby190p-ld-wrapper-boot0-0.drv
/home/pi/code/guix/test-tmp/store/c9s2bwr11wsn6i1v3skqxq3431jrasc4-diffutils-boot0-3.6.drv
/home/pi/code/guix/test-tmp/store/dld8867smzrpyv1dc4wp3w42sygb44jb-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/dlmxhglzzaw0b6pr3h3ngv3g1ksqwg8n-findutils-boot0-4.6.0.drv
/home/pi/code/guix/test-tmp/store/n20ymaf8xw3c8dx1v1996z7yfr2h0c22-binutils-cross-boot0-2.28.drv
/home/pi/code/guix/test-tmp/store/n793p7xk02yldnmdn9zz9kc6nw2ciiif-ld-wrapper-boot3-0.drv
/home/pi/code/guix/test-tmp/store/rikm46m7ygb4w12i1c8hh97lz1fnfifw-file-boot0-5.30.drv
/home/pi/code/guix/test-tmp/store/1ansvvkln0jzd5ikvs7y6mq777h7dg9y-tar-1.29.drv
/home/pi/code/guix/test-tmp/store/1c43qn9aml7l8f61djmlgw0x9ib113lg-gawk-4.1.4.drv
/home/pi/code/guix/test-tmp/store/1jhvvm2yrqmmp0ms0hgd5zibmm1siwsj-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/1zw944az1ynvc9clh12ph18svb4z2i3p-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/361j78mv3mck9cyhn5976y3lrswgqwv5-glibc-utf8-locales-2.25.drv
/home/pi/code/guix/test-tmp/store/3k3icphvhnf0y92ln6ga8g5nhdsyyjxz-diffutils-3.6.drv
/home/pi/code/guix/test-tmp/store/564mswhzbly7z2ydarlw82fr3im06kqc-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/5n7ha4jwdx7zzln65f9cn8ix3chqmrvr-findutils-4.6.0.drv
/home/pi/code/guix/test-tmp/store/6a48ckx02lm0z53xg68r95mmkdfprbhp-module-import.drv
/home/pi/code/guix/test-tmp/store/9qzsrshmdwddxfkdn5arwr9nbqir9qrd-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/fp6lh1sv3sa73wvs22qjb4gmg15qxpic-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/gz2r6kb5sl8azqxqk9w4nnzda8l5wk7p-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/hgj2606jn61ijvibp53av2c80cx8yppv-linux-libre-headers-4.4.47.drv
/home/pi/code/guix/test-tmp/store/i3pnm4ci86by26ln5qvvr49pl1n9x78p-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/in11cxbvahj8h40hdk7g4x2mrarsh2bz-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/j1kmmcd0cp0h51amyq441h2ahkmn7whp-ld-wrapper-0.drv
/home/pi/code/guix/test-tmp/store/j4k3ky5k4gn6drw7sqp92pri95j8qhyn-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/jh279qphzff63hmvily4bhg6c0as5all-make-4.2.1.drv
/home/pi/code/guix/test-tmp/store/mjs00pmjislknl4i98y038z1ir0dgxnz-guile-2.2.2.drv
/home/pi/code/guix/test-tmp/store/nlcjd3pm7w9yyh4g33g6kfz3p0q8b5gp-bzip2-1.0.6.drv
/home/pi/code/guix/test-tmp/store/p4bzb8hcciqmn9s96p2f2rrpg6rp49gm-binutils-2.28.drv
/home/pi/code/guix/test-tmp/store/qn0g1g5bipjn6k10pmk5yy92g4v3l4m0-xz-5.2.2.drv
/home/pi/code/guix/test-tmp/store/ri8b5gca2f2h06cxny56w0bbb8a9z86p-patch-2.7.5.drv
/home/pi/code/guix/test-tmp/store/s09f7y3rjss13n5pm4fxa4k248ydrlr4-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/svkck37nskq4nmci56x5bcv7vijalbms-grep-3.0.drv
/home/pi/code/guix/test-tmp/store/vmfh0lskxhaa2pidf5m68gk4dafr9jpn-sed-4.4.drv
/home/pi/code/guix/test-tmp/store/vrnzy86r2f1si799d0r9ncbf4hbj0jzh-gcc-5.4.0.drv
/home/pi/code/guix/test-tmp/store/z9if03n7l35xqb1py8cpv8db95skvc2a-file-5.30.drv
/home/pi/code/guix/test-tmp/store/8f6wgng3fkms2f06wm331vg3fpb1q5l3-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/mmkj2kdf4bgsmim177nrv8hdb0agn011-linux-libre-headers-4.4.47.drv
+ guix package --bootstrap -i guile-bootstrap:out -p t-profile-11262 -n
accepted connection from pid 18199, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package would be upgraded:
guile-bootstrap 2.0 → 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
+ guix package --bootstrap -i guile-bootstrap:does-not-exist -p t-profile-11262 -n
accepted connection from pid 18455, user pi
guix package: error: package `guile-bootstrap-2.0' lacks output `does-not-exist'
+ true
+ guix package --bootstrap -i guile-bootstrap:does-not-exist -p t-profile-11262
accepted connection from pid 18586, user pi
guix package: error: package `guile-bootstrap-2.0' lacks output `does-not-exist'
+ true
+ grep guile
+ guix package -p t-profile-11262 -A 'gui.*e'
guile 1.8.8 out gnu/packages/guile.scm:86:2
guile 2.2.3 out,debug gnu/packages/guile.scm:259:2
guile 2.2.2 out,debug gnu/packages/guile.scm:225:2
guile 2.0.14 out,debug gnu/packages/guile.scm:146:2
guile-8sync 0.4.2 out gnu/packages/guile.scm:1820:2
guile-aspell 0.4 out gnu/packages/guile.scm:1706:2
guile-bash 0.1.6-0.1eabc56 out gnu/packages/guile.scm:1750:4
guile-bootstrap 2.0 out gnu/packages/bootstrap.scm:287:3
guile-bytestructures 1.0.1 out gnu/packages/guile.scm:1676:2
guile-cairo 1.4.1 out gnu/packages/gtk.scm:747:2
guile-charting 0.2.0 out gnu/packages/plotutils.scm:84:2
guile-colorized 0.1 out gnu/packages/guile.scm:2001:2
guile-commonmark 0.1 out gnu/packages/guile.scm:1635:2
guile-config 0.1.1 out gnu/packages/guile.scm:1240:2
guile-daemon 0.1.2 out gnu/packages/guile.scm:1610:2
guile-dbd-sqlite3 2.1.6 out gnu/packages/guile.scm:1505:2
guile-dbi 2.1.6 out gnu/packages/guile.scm:1467:2
guile-dsv 0.2.1 out gnu/packages/guile.scm:1532:2
guile-emacs 20150512.41120e0 out gnu/packages/emacs.scm:274:2
guile-fibers 1.0.0 out gnu/packages/guile.scm:1853:2
guile-for-guile-emacs 20150510.d8d9a8d out,debug gnu/packages/guile.scm:307:2
guile-gdbm-ffi 20120209.fa1d5b6 out gnu/packages/guile.scm:1048:2
guile-git 0.0-4.951a32c out gnu/packages/guile.scm:1887:4
guile-gnome 2.16.5 out,debug gnu/packages/gtk.scm:912:3
guile-gnunet 0.0.383eac2 out gnu/packages/gnunet.scm:311:4
guile-ics 0.1.1 out gnu/packages/guile.scm:675:2
guile-irregex 0.9.6 out gnu/packages/guile.scm:960:2
guile-json 0.6.0 out gnu/packages/guile.scm:762:2
guile-lib 0.2.5.1 out gnu/packages/guile.scm:715:2
guile-libctl 3.2.2 out gnu/packages/engineering.scm:936:2
guile-miniadapton 0-1.1b5749422 out gnu/packages/guile.scm:894:4
guile-minikanren 20150424.e844d85 out gnu/packages/guile.scm:806:2
guile-ncurses 2.2 out gnu/packages/guile.scm:540:2
guile-ncurses-with-gpm 2.2 out gnu/packages/guile.scm:581:2
guile-opengl 0.1.0 out gnu/packages/gl.scm:460:2
guile-present 0.3.0 out gnu/packages/gtk.scm:863:2
guile-reader 0.6.2 out gnu/packages/guile.scm:504:2
guile-redis 0.1.0 out gnu/packages/guile.scm:1267:2
guile-rsvg 2.18.1-0.05c6a2f out gnu/packages/gtk.scm:821:4
guile-sdl 0.5.2 out gnu/packages/sdl.scm:401:2
guile-sdl2 0.2.0 out gnu/packages/sdl.scm:481:2
guile-sjson 0.2.1 out gnu/packages/guile.scm:1972:2
guile-sly 0.1 out gnu/packages/guile.scm:1376:2
guile-sqlite3 0.0-4.10c13a7 out gnu/packages/guile.scm:1135:4
guile-ssh 0.11.2 out,debug gnu/packages/ssh.scm:223:2
guile-static-stripped 2.2.2 out gnu/packages/make-bootstrap.scm:551:2
guile-static-stripped-tarball 2.2.2 out gnu/packages/make-bootstrap.scm:596:2
guile-syntax-highlight 0.0.0.a047675 out gnu/packages/guile.scm:1938:4
guile-wisp 0.9.8 out gnu/packages/guile.scm:1303:2
guile-wm 1.0-1.f3c7b3b out gnu/packages/guile-wm.scm:75:4
guile-xcb 1.3-1.db7d5a3 out gnu/packages/guile-wm.scm:37:4
guile-xosd 0.2.1 out gnu/packages/guile.scm:1581:2
guile2.0-bytestructures 1.0.1 out guix/packages.scm:804:11
guile2.0-commonmark 0.1 out guix/packages.scm:804:11
guile2.0-gdbm-ffi 20120209.fa1d5b6 out guix/packages.scm:804:11
guile2.0-git 0.0-4.951a32c out guix/packages.scm:804:11
guile2.0-gnutls 3.5.13 out,debug,doc gnu/packages/tls.scm:238:2
guile2.0-guix 0.14.0-8.bc880f9 out gnu/packages/package-management.scm:306:2
guile2.0-haunt 0.2.1 out guix/packages.scm:804:11
guile2.0-json 0.6.0 out guix/packages.scm:804:11
guile2.0-lib 0.2.5.1 out guix/packages.scm:804:11
guile2.0-reader 0.6.2 out guix/packages.scm:804:11
guile2.0-ssh 0.11.2 out,debug gnu/packages/ssh.scm:283:2
guile2.2-irregex 0.9.6 out guix/packages.scm:804:11
guile2.2-minikanren 20150424.e844d85 out guix/packages.scm:804:11
guile2.2-redis 0.1.0 out guix/packages.scm:804:11
zile-on-guile 2.4.14-0.fd09781 out gnu/packages/zile.scm:83:4
+ grep '^name: guile'
+ guix package --show=guile
name: guile
name: guile
name: guile
name: guile
+ guix package --show=texlive
name: texlive
version: 2017
outputs: out
systems: x86_64-linux i686-linux armhf-linux aarch64-linux mips64el-linux
dependencies: bash-4.4.12 texlive-bin-20170524 texlive-texmf-2017
location: gnu/packages/tex.scm:3859:2
homepage: https://www.tug.org/texlive/
license: FSF-free
synopsis: TeX Live, a package of the TeX typesetting system
description: TeX Live provides a comprehensive TeX document production system.
+ It includes all the major TeX-related programs, macro packages, and fonts that
+ are free software, including support for many languages around the world.
+
+ This package contains the complete TeX Live distribution.
+ LC_MESSAGES=C
+ export LC_MESSAGES
++ grep '^name:'
++ guix package -s 'An example GNU package'
Backtrace:
In ice-9/boot-9.scm:
713:2 19 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
619:8 18 (_ #(#(#<directory (guile-user) 46f910>)))
In guix/ui.scm:
1489:12 17 (run-guix-command _ . _)
In ice-9/boot-9.scm:
837:9 16 (catch _ _ #<procedure 7663db50 at guix/ui.scm:542:2 (…> …)
837:9 15 (catch _ _ #<procedure 7663db60 at guix/ui.scm:648:6 (…> …)
In guix/scripts/package.scm:
912:10 14 (_)
770:9 13 (process-query _)
In ice-9/boot-9.scm:
837:9 12 (catch _ _ #<procedure 7473e928 at guix/scripts/packag…> …)
In guix/scripts/package.scm:
772:24 11 (_)
249:17 10 (find-packages-by-description _)
In guix/discovery.scm:
137:3 9 (fold-module-public-variables _ _ _)
In guix/combinators.scm:
45:26 8 (fold2 #<procedure ce47d0 at guix/discovery.scm:137:10…> …)
45:26 7 (fold2 #<procedure 1c394f0 at guix/discovery.scm:138:1…> …)
In guix/discovery.scm:
140:33 6 (_ #<package ifdtool@4.7 gnu/packages/flashing-tools.s…> …)
In guix/scripts/package.scm:
250:34 5 (_ #<package ifdtool@4.7 gnu/packages/flashing-tools.s…> …)
In srfi/srfi-1.scm:
466:18 4 (fold #<procedure 1c4a100 at guix/ui.scm:1158:8 (metri…> …)
In guix/ui.scm:
1161:13 3 (_ _ 0)
1040:23 2 (texi->plain-text _)
In texinfo.scm:
1131:22 1 (parse _)
966:36 0 (loop #<input: string 1c20038> (*fragment*) #<procedur…> …)
texinfo.scm:966:36: In procedure loop:
texinfo.scm:966:36: Throw to key `parser-error' with args `(#f "Unknown command" ifdtool)'.
+ test '' = 'name: hello'
+ rm -f t-profile-11262 t-profile-11262-1-link t-guix-package-file-11262
+ rm -rf t-guix-package-11262 t-home-11262
FAIL tests/guix-package.sh (exit status: 1)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: pi-test-suite3.log --]
[-- Type: text/x-log; name="pi-test-suite3.log", Size: 84106 bytes --]
==================================================
GNU Guix 0.14.0.1872-7e0a6: ./test-suite.log
==================================================
# TOTAL: 755
# PASS: 748
# SKIP: 6
# XFAIL: 0
# FAIL: 1
# XPASS: 0
# ERROR: 0
.. contents:: :depth: 2
SKIP: tests/base32
==================
sh: nix-hash: command not found
test-name: bytevector->base32-string
location: /home/pi/code/guix/tests/base32.scm:48
source:
+ (test-assert
+ "bytevector->base32-string"
+ (fold (lambda (bv expected result)
+ (and result
+ (string=?
+ (bytevector->base32-string bv)
+ expected)))
+ #t
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))
+ '(""
+ "my"
+ "mzxq"
+ "mzxw6"
+ "mzxw6yq"
+ "mzxw6ytb"
+ "mzxw6ytboi")))
actual-value: #t
result: PASS
test-name: base32-string->bytevector
location: /home/pi/code/guix/tests/base32.scm:65
source:
+ (test-assert
+ "base32-string->bytevector"
+ (every (lambda (bv)
+ (equal?
+ (base32-string->bytevector
+ (bytevector->base32-string bv))
+ bv))
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
actual-value: #t
result: PASS
test-name: nix-base32-string->bytevector
location: /home/pi/code/guix/tests/base32.scm:73
source:
+ (test-assert
+ "nix-base32-string->bytevector"
+ (every (lambda (bv)
+ (equal?
+ (nix-base32-string->bytevector
+ (bytevector->nix-base32-string bv))
+ bv))
+ (map string->utf8
+ '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
actual-value: #t
result: PASS
test-name: &invalid-base32-character
location: /home/pi/code/guix/tests/base32.scm:81
source:
+ (test-equal
+ "&invalid-base32-character"
+ #\e
+ (guard (c ((invalid-base32-character? c)
+ (invalid-base32-character-value c)))
+ (nix-base32-string->bytevector
+ (string-append (make-string 51 #\a) "e"))))
expected-value: #\e
actual-value: #\e
result: PASS
test-name: sha256 & bytevector->nix-base32-string
location: /home/pi/code/guix/tests/base32.scm:92
source:
+ (test-assert
+ "sha256 & bytevector->nix-base32-string"
+ (let ((file (search-path %load-path "tests/test.drv")))
+ (equal?
+ (bytevector->nix-base32-string
+ (sha256
+ (call-with-input-file file get-bytevector-all)))
+ (let* ((c (format
+ #f
+ "~a --type sha256 --base32 --flat \"~a\""
+ %nix-hash
+ file))
+ (p (open-input-pipe c))
+ (l (read-line p)))
+ (close-pipe p)
+ l))))
result: SKIP
SKIP: tests/snix
================
test-name: factorize-uri
location: /home/pi/code/guix/tests/snix.scm:36
source:
+ (test-assert
+ "factorize-uri"
+ (every?
+ (match-lambda
+ ((uri version '-> expected)
+ (equal? (factorize-uri uri version) expected)))
+ '(("http://example.com/foo.tgz"
+ "1.0"
+ ->
+ "http://example.com/foo.tgz")
+ ("http://example.com/foo-2.8.tgz"
+ "2.8"
+ ->
+ ("http://example.com/foo-" version ".tgz"))
+ ("http://example.com/2.8/foo-2.8.tgz"
+ "2.8"
+ ->
+ ("http://example.com/"
+ version
+ "/foo-"
+ version
+ ".tgz")))))
actual-value: #t
result: PASS
test-name: nixpkgs->guix-package
location: /home/pi/code/guix/tests/snix.scm:54
source:
+ (test-assert
+ "nixpkgs->guix-package"
+ (match (nixpkgs->guix-package
+ %nixpkgs-directory
+ "guile")
+ (('package
+ ('name "guile")
+ ('version (? string?))
+ ('source ('origin _ ...))
+ ('build-system _)
+ ('inputs ('quasiquote (inputs ...)))
+ ('propagated-inputs ('quasiquote (pinputs ...)))
+ ('home-page (? string?))
+ ('synopsis (? string?))
+ ('description (? string?))
+ ('license (? symbol?)))
+ (and (member '("libffi" ,libffi) inputs)
+ (member '("gmp" ,gmp) pinputs)
+ #t))
+ (x (pk 'fail x #f))))
result: SKIP
SKIP: tests/syscalls
====================
test-name: mount, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:40
source:
+ (test-equal
+ "mount, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda ()
+ (mount "/dev/null" "/does-not-exist" "ext2")
+ #f)
+ (compose system-error-errno list)))
expected-value: 2
actual-value: 2
result: PASS
test-name: umount, ENOENT/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:48
source:
+ (test-assert
+ "umount, ENOENT/EPERM"
+ (catch 'system-error
+ (lambda () (umount "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM ENOENT)))))
actual-value: (1 2)
result: PASS
test-name: mount-points
location: /home/pi/code/guix/tests/syscalls.scm:57
source:
+ (test-assert
+ "mount-points"
+ (any (cute member <> (mount-points))
+ '("/" "/proc" "/sys" "/dev")))
actual-value: ("/" "/dev" "/sys" "/proc" "/dev/shm" "/dev/pts" "/run" "/run/lock" "/sys/fs/cgroup" "/sys/fs/cgroup/systemd" "/sys/fs/cgroup/cpuset" "/sys/fs/cgroup/cpu,cpuacct" "/sys/fs/cgroup/net_cls" "/sys/fs/cgroup/freezer" "/sys/fs/cgroup/blkio" "/sys/fs/cgroup/devices" "/proc/sys/fs/binfmt_misc" "/dev/mqueue" "/run/rpc_pipefs" "/sys/kernel/debug" "/sys/kernel/config" "/boot" "/run/user/109" "/sys/fs/fuse/connections" "/run/user/109/gvfs" "/run/user/1000")
result: PASS
test-name: swapon, ENOENT/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:63
source:
+ (test-assert
+ "swapon, ENOENT/EPERM"
+ (catch 'system-error
+ (lambda () (swapon "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM ENOENT)))))
actual-value: (1 2)
result: PASS
test-name: swapoff, ENOENT/EINVAL/EPERM
location: /home/pi/code/guix/tests/syscalls.scm:71
source:
+ (test-assert
+ "swapoff, ENOENT/EINVAL/EPERM"
+ (catch 'system-error
+ (lambda () (swapoff "/does-not-exist") #f)
+ (lambda args
+ (memv (system-error-errno args)
+ (list EPERM EINVAL ENOENT)))))
actual-value: (1 22 2)
result: PASS
test-name: mkdtemp!
location: /home/pi/code/guix/tests/syscalls.scm:79
source:
+ (test-assert
+ "mkdtemp!"
+ (let* ((tmp (or (getenv "TMPDIR") "/tmp"))
+ (dir (mkdtemp!
+ (string-append tmp "/guix-test-XXXXXX"))))
+ (and (file-exists? dir) (begin (rmdir dir) #t))))
actual-value: #t
result: PASS
test-name: statfs, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:87
source:
+ (test-equal
+ "statfs, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda () (statfs "/does-not-exist"))
+ (compose system-error-errno list)))
expected-value: 2
actual-value: 2
result: PASS
test-name: statfs
location: /home/pi/code/guix/tests/syscalls.scm:94
source:
+ (test-assert
+ "statfs"
+ (let ((fs (statfs "/")))
+ (and (file-system? fs)
+ (> (file-system-block-size fs) 0)
+ (>= (file-system-blocks-available fs) 0)
+ (>= (file-system-blocks-free fs)
+ (file-system-blocks-available fs)))))
actual-value: #t
result: PASS
test-name: clone
location: /home/pi/code/guix/tests/syscalls.scm:111
source:
+ (test-assert
+ "clone"
+ (match (clone (logior CLONE_NEWUSER SIGCHLD))
+ (0 (primitive-exit 42))
+ (pid (and (not (equal?
+ (readlink (user-namespace pid))
+ (readlink (user-namespace (getpid)))))
+ (match (waitpid pid)
+ ((_ . status) (= 42 (status:exit-val status))))))))
actual-value: #t
result: PASS
test-name: setns
location: /home/pi/code/guix/tests/syscalls.scm:124
source:
+ (test-assert
+ "setns"
+ (match (clone (logior CLONE_NEWUSER SIGCHLD))
+ (0 (primitive-exit 0))
+ (clone-pid
+ (match (pipe)
+ ((in . out)
+ (match (primitive-fork)
+ (0
+ (close in)
+ (call-with-input-file
+ (user-namespace clone-pid)
+ (lambda (port) (setns (port->fdes port) 0)))
+ (write 'done out)
+ (close out)
+ (primitive-exit 0))
+ (fork-pid
+ (close out)
+ (read in)
+ (let ((result
+ (and (equal?
+ (readlink
+ (user-namespace clone-pid))
+ (readlink
+ (user-namespace fork-pid))))))
+ (waitpid clone-pid)
+ (waitpid fork-pid)
+ result))))))))
actual-value: #t
result: PASS
test-name: pivot-root
location: /home/pi/code/guix/tests/syscalls.scm:156
source:
+ (test-equal
+ "pivot-root"
+ #t
+ (match (pipe)
+ ((in . out)
+ (match (clone (logior CLONE_NEWUSER CLONE_NEWNS SIGCHLD))
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (close in)
+ (call-with-temporary-directory
+ (lambda (root)
+ (let ((put-old (string-append root "/real-root")))
+ (mount "none" root "tmpfs")
+ (mkdir put-old)
+ (call-with-output-file
+ (string-append root "/test")
+ (lambda (port) (display "testing\n" port)))
+ (pivot-root root put-old)
+ (write (file-exists? "/test") out)
+ (close out)))))
+ (lambda () (primitive-exit 0))))
+ (pid (close out)
+ (let ((result (read in)))
+ (close in)
+ (and (zero? (match (waitpid pid)
+ ((_ . status)
+ (status:exit-val status))))
+ (eq? #t result))))))))
result: SKIP
test-name: scandir*, ENOENT
location: /home/pi/code/guix/tests/syscalls.scm:189
source:
+ (test-equal
+ "scandir*, ENOENT"
+ ENOENT
+ (catch 'system-error
+ (lambda () (scandir* "/does/not/exist"))
+ (lambda args (system-error-errno args))))
expected-value: 2
actual-value: 2
result: PASS
test-name: scandir*, ASCII file names
location: /home/pi/code/guix/tests/syscalls.scm:197
source:
+ (test-equal
+ "scandir*, ASCII file names"
+ (scandir
+ (dirname
+ (search-path %load-path "guix/base32.scm"))
+ (const #t)
+ string<?)
+ (match (scandir*
+ (dirname
+ (search-path %load-path "guix/base32.scm")))
+ (((names . properties) ...) names)))
expected-value: ("." ".." "base16.go" "base16.scm" "base32.go" "base32.scm" "base64.go" "base64.scm" "build" "build-system" "build-system.go" "build-system.scm" "cache.go" "cache.scm" "combinators.go" "combinators.scm" "config.go" "config.scm" "config.scm.in" "cpio.go" "cpio.scm" "cve.go" "cve.scm" "cvs-download.go" "cvs-download.scm" "derivations.go" "derivations.scm" "discovery.go" "discovery.scm" "docker.go" "docker.scm" "download.go" "download.scm" "elf.go" "elf.scm" "ftp-client.go" "ftp-client.scm" "gcrypt.go" "gcrypt.scm" "gexp.go" "gexp.scm" "git-download.go" "git-download.scm" "git.go" "git.scm" "gnu-maintenance.go" "gnu-maintenance.scm" "gnupg.go" "gnupg.scm" "grafts.go" "grafts.scm" "graph.go" "graph.scm" "hash.go" "hash.scm" "hg-download.go" "hg-download.scm" "http-client.go" "http-client.scm" "i18n.go" "i18n.scm" "import" "licenses.go" "licenses.scm" "man-db.scm" "memoization.go" "memoization.scm" "modules.go" "modules.scm" "monad-repl.go" "monad-repl.scm" "monads.go" "monads.scm" "nar.go" "nar.scm" "packages.go" "packages.scm" "pk-crypto.go" "pk-crypto.scm" "pki.go" "pki.scm" "profiles.go" "profiles.scm" "profiling.go" "profiling.scm" "progress.go" "progress.scm" "records.go" "records.scm" "scripts" "scripts.go" "scripts.scm" "search-paths.go" "search-paths.scm" "serialization.go" "serialization.scm" "sets.go" "sets.scm" "ssh.go" "ssh.scm" "store" "store.go" "store.scm" "svn-download.go" "svn-download.scm" "tests" "tests.go" "tests.scm" "ui.go" "ui.scm" "upstream.go" "upstream.scm" "utils.go" "utils.scm" "workers.go" "workers.scm" "zlib.go" "zlib.scm")
actual-value: ("." ".." "base16.go" "base16.scm" "base32.go" "base32.scm" "base64.go" "base64.scm" "build" "build-system" "build-system.go" "build-system.scm" "cache.go" "cache.scm" "combinators.go" "combinators.scm" "config.go" "config.scm" "config.scm.in" "cpio.go" "cpio.scm" "cve.go" "cve.scm" "cvs-download.go" "cvs-download.scm" "derivations.go" "derivations.scm" "discovery.go" "discovery.scm" "docker.go" "docker.scm" "download.go" "download.scm" "elf.go" "elf.scm" "ftp-client.go" "ftp-client.scm" "gcrypt.go" "gcrypt.scm" "gexp.go" "gexp.scm" "git-download.go" "git-download.scm" "git.go" "git.scm" "gnu-maintenance.go" "gnu-maintenance.scm" "gnupg.go" "gnupg.scm" "grafts.go" "grafts.scm" "graph.go" "graph.scm" "hash.go" "hash.scm" "hg-download.go" "hg-download.scm" "http-client.go" "http-client.scm" "i18n.go" "i18n.scm" "import" "licenses.go" "licenses.scm" "man-db.scm" "memoization.go" "memoization.scm" "modules.go" "modules.scm" "monad-repl.go" "monad-repl.scm" "monads.go" "monads.scm" "nar.go" "nar.scm" "packages.go" "packages.scm" "pk-crypto.go" "pk-crypto.scm" "pki.go" "pki.scm" "profiles.go" "profiles.scm" "profiling.go" "profiling.scm" "progress.go" "progress.scm" "records.go" "records.scm" "scripts" "scripts.go" "scripts.scm" "search-paths.go" "search-paths.scm" "serialization.go" "serialization.scm" "sets.go" "sets.scm" "ssh.go" "ssh.scm" "store" "store.go" "store.scm" "svn-download.go" "svn-download.scm" "tests" "tests.go" "tests.scm" "ui.go" "ui.scm" "upstream.go" "upstream.scm" "utils.go" "utils.scm" "workers.go" "workers.scm" "zlib.go" "zlib.scm")
result: PASS
test-name: scandir*, UTF-8 file names
location: /home/pi/code/guix/tests/syscalls.scm:204
source:
+ (test-equal
+ "scandir*, UTF-8 file names"
+ '("." ".." "α" "λ")
+ (call-with-temporary-directory
+ (lambda (directory)
+ (let ((creat (pointer->procedure
+ int
+ (dynamic-func "creat" (dynamic-link))
+ (list '* int))))
+ (creat (string->pointer
+ (string-append directory "/α")
+ "UTF-8")
+ 420)
+ (creat (string->pointer
+ (string-append directory "/λ")
+ "UTF-8")
+ 420)
+ (let ((locale (setlocale LC_ALL)))
+ (dynamic-wind
+ (lambda () (setlocale LC_ALL "C"))
+ (lambda ()
+ (match (scandir* directory)
+ (((names . properties) ...) names)))
+ (lambda () (setlocale LC_ALL locale))))))))
expected-value: ("." ".." "α" "λ")
actual-value: ("." ".." "α" "λ")
result: PASS
test-name: scandir*, properties
location: /home/pi/code/guix/tests/syscalls.scm:231
source:
+ (test-assert
+ "scandir*, properties"
+ (let ((directory
+ (dirname
+ (search-path %load-path "guix/base32.scm"))))
+ (every (lambda (entry name)
+ (match entry
+ ((name2 . properties)
+ (and (string=? name2 name)
+ (let* ((full (string-append directory "/" name))
+ (stat (lstat full))
+ (inode (assoc-ref properties 'inode))
+ (type (assoc-ref properties 'type)))
+ (and (= inode (stat:ino stat))
+ (or (eq? type 'unknown)
+ (eq? type (stat:type stat)))))))))
+ (scandir* directory)
+ (scandir directory (const #t) string<?))))
actual-value: #t
result: PASS
test-name: fcntl-flock wait
location: /home/pi/code/guix/tests/syscalls.scm:248
source:
+ (test-equal
+ "fcntl-flock wait"
+ 42
+ (let ((file (open-file temp-file "w0b")))
+ (fcntl-flock file 'write-lock)
+ (match (primitive-fork)
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (let ((file (open-file temp-file "r0b")))
+ (fcntl-flock file 'read-lock)
+ (primitive-exit (read file)))
+ (primitive-exit 1))
+ (lambda () (primitive-exit 2))))
+ (pid (display "hello, world!" file)
+ (force-output file)
+ (sleep 1)
+ (seek file 0 SEEK_SET)
+ (truncate-file file 0)
+ (write 42 file)
+ (force-output file)
+ (fcntl-flock file 'unlock)
+ (match (waitpid pid)
+ ((_ . status)
+ (let ((result (status:exit-val status)))
+ (close-port file)
+ result)))))))
expected-value: 42
actual-value: 42
result: PASS
test-name: fcntl-flock non-blocking
location: /home/pi/code/guix/tests/syscalls.scm:287
source:
+ (test-equal
+ "fcntl-flock non-blocking"
+ EAGAIN
+ (match (pipe)
+ ((input . output)
+ (match (primitive-fork)
+ (0
+ (dynamic-wind
+ (const #t)
+ (lambda ()
+ (close-port output)
+ (read-char input)
+ (let ((file (open-file temp-file "w0")))
+ (catch 'flock-error
+ (lambda ()
+ (fcntl-flock file 'write-lock #:wait? #f))
+ (lambda (key errno)
+ (primitive-exit (pk 'errno errno)))))
+ (primitive-exit -1))
+ (lambda () (primitive-exit -2))))
+ (pid (close-port input)
+ (let ((file (open-file temp-file "w0")))
+ (fcntl-flock file 'write-lock)
+ (write 'green-light output)
+ (force-output output)
+ (match (waitpid pid)
+ ((_ . status)
+ (let ((result (status:exit-val status)))
+ (fcntl-flock file 'unlock)
+ (close-port file)
+ result)))))))))
;;; (errno 11)
expected-value: 11
actual-value: 11
result: PASS
test-name: set-thread-name
location: /home/pi/code/guix/tests/syscalls.scm:329
source:
+ (test-equal
+ "set-thread-name"
+ "Syscall Test"
+ (let ((name (thread-name)))
+ (set-thread-name "Syscall Test")
+ (let ((new-name (thread-name)))
+ (set-thread-name name)
+ new-name)))
expected-value: "Syscall Test"
actual-value: "Syscall Test"
result: PASS
test-name: all-network-interface-names
location: /home/pi/code/guix/tests/syscalls.scm:337
source:
+ (test-assert
+ "all-network-interface-names"
+ (match (all-network-interface-names)
+ (((? string? names) ..1) (member "lo" names))))
actual-value: ("lo")
result: PASS
test-name: network-interface-names
location: /home/pi/code/guix/tests/syscalls.scm:342
source:
+ (test-assert
+ "network-interface-names"
+ (match (network-interface-names)
+ (((? string? names) ..1)
+ (lset<=
+ string=?
+ names
+ (all-network-interface-names)))))
actual-value: #t
result: PASS
test-name: network-interface-flags
location: /home/pi/code/guix/tests/syscalls.scm:347
source:
+ (test-assert
+ "network-interface-flags"
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (flags (network-interface-flags sock "lo")))
+ (close-port sock)
+ (and (not (zero? (logand flags IFF_LOOPBACK)))
+ (not (zero? (logand flags IFF_UP))))))
actual-value: #t
result: PASS
test-name: loopback-network-interface?
location: /home/pi/code/guix/tests/syscalls.scm:354
source:
+ (test-equal
+ "loopback-network-interface?"
+ ENODEV
+ (and (loopback-network-interface? "lo")
+ (catch 'system-error
+ (lambda ()
+ (loopback-network-interface? "nonexistent")
+ #f)
+ (lambda args (system-error-errno args)))))
expected-value: 19
actual-value: 19
result: PASS
test-name: loopback-network-interface-running?
location: /home/pi/code/guix/tests/syscalls.scm:364
source:
+ (test-equal
+ "loopback-network-interface-running?"
+ ENODEV
+ (and (network-interface-running? "lo")
+ (catch 'system-error
+ (lambda ()
+ (network-interface-running? "nonexistent")
+ #f)
+ (lambda args (system-error-errno args)))))
expected-value: 19
actual-value: 19
result: PASS
test-name: set-network-interface-flags
location: /home/pi/code/guix/tests/syscalls.scm:375
source:
+ (test-assert
+ "set-network-interface-flags"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-flags sock "lo" IFF_UP))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interface-address lo
location: /home/pi/code/guix/tests/syscalls.scm:385
source:
+ (test-equal
+ "network-interface-address lo"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.0.0.1")
+ 0)
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (addr (network-interface-address sock "lo")))
+ (close-port sock)
+ addr))
expected-value: #(2 2130706433 0)
actual-value: #(2 2130706433 0)
result: PASS
test-name: set-network-interface-address
location: /home/pi/code/guix/tests/syscalls.scm:393
source:
+ (test-assert
+ "set-network-interface-address"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-address
+ sock
+ "nonexistent"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.12.14.15")
+ 0)))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interface-netmask lo
location: /home/pi/code/guix/tests/syscalls.scm:407
source:
+ (test-equal
+ "network-interface-netmask lo"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "255.0.0.0")
+ 0)
+ (let* ((sock (socket AF_INET SOCK_STREAM 0))
+ (addr (network-interface-netmask sock "lo")))
+ (close-port sock)
+ addr))
expected-value: #(2 4278190080 0)
actual-value: #(2 4278190080 0)
result: PASS
test-name: set-network-interface-netmask
location: /home/pi/code/guix/tests/syscalls.scm:415
source:
+ (test-assert
+ "set-network-interface-netmask"
+ (let ((sock (socket AF_INET SOCK_STREAM 0)))
+ (catch 'system-error
+ (lambda ()
+ (set-network-interface-netmask
+ sock
+ "nonexistent"
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "255.0.0.0")
+ 0)))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: network-interfaces returns one or more interfaces
location: /home/pi/code/guix/tests/syscalls.scm:428
source:
+ (test-equal
+ "network-interfaces returns one or more interfaces"
+ '(#t #t #t)
+ (match (network-interfaces)
+ ((interfaces ..1)
+ (list (every interface? interfaces)
+ (every string? (map interface-name interfaces))
+ (every (lambda (sockaddr)
+ (or (vector? sockaddr) (not sockaddr)))
+ (map interface-address interfaces))))))
expected-value: (#t #t #t)
actual-value: (#t #t #t)
result: PASS
test-name: network-interfaces returns "lo"
location: /home/pi/code/guix/tests/syscalls.scm:440
source:
+ (test-equal
+ "network-interfaces returns \"lo\""
+ (list #t
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "127.0.0.1")
+ 0))
+ (match (filter
+ (lambda (interface)
+ (string=? "lo" (interface-name interface)))
+ (network-interfaces))
+ ((loopbacks ..1)
+ (list (every (lambda (lo)
+ (not (zero? (logand
+ IFF_LOOPBACK
+ (interface-flags lo)))))
+ loopbacks)
+ (match (find (lambda (lo)
+ (= AF_INET
+ (sockaddr:fam (interface-address lo))))
+ loopbacks)
+ (#f #f)
+ (lo (interface-address lo)))))))
expected-value: (#t #(2 2130706433 0))
actual-value: (#t #(2 2130706433 0))
result: PASS
test-name: add-network-route/gateway
location: /home/pi/code/guix/tests/syscalls.scm:456
source:
+ (test-assert
+ "add-network-route/gateway"
+ (let ((sock (socket AF_INET SOCK_STREAM 0))
+ (gateway
+ (make-socket-address
+ AF_INET
+ (inet-pton AF_INET "192.168.0.1")
+ 0)))
+ (catch 'system-error
+ (lambda ()
+ (add-network-route/gateway sock gateway))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: delete-network-route
location: /home/pi/code/guix/tests/syscalls.scm:469
source:
+ (test-assert
+ "delete-network-route"
+ (let ((sock (socket AF_INET SOCK_STREAM 0))
+ (destination
+ (make-socket-address AF_INET INADDR_ANY 0)))
+ (catch 'system-error
+ (lambda ()
+ (delete-network-route sock destination))
+ (lambda args
+ (close-port sock)
+ (memv (system-error-errno args)
+ (list EPERM EACCES))))))
actual-value: (1 13)
result: PASS
test-name: tcgetattr ENOTTY
location: /home/pi/code/guix/tests/syscalls.scm:479
source:
+ (test-equal
+ "tcgetattr ENOTTY"
+ ENOTTY
+ (catch 'system-error
+ (lambda ()
+ (call-with-input-file
+ "/dev/null"
+ (lambda (port) (tcgetattr (fileno port)))))
+ (compose system-error-errno list)))
expected-value: 25
actual-value: 25
result: PASS
test-name: tcgetattr
location: /home/pi/code/guix/tests/syscalls.scm:493
source:
+ (test-assert
+ "tcgetattr"
+ (let ((termios (tcgetattr 0)))
+ (and (termios? termios)
+ (> (termios-input-speed termios) 0)
+ (> (termios-output-speed termios) 0))))
actual-value: #t
result: PASS
test-name: tcsetattr
location: /home/pi/code/guix/tests/syscalls.scm:499
source:
+ (test-assert
+ "tcsetattr"
+ (let ((first (tcgetattr 0)))
+ (tcsetattr 0 (tcsetattr-action TCSANOW) first)
+ (equal? first (tcgetattr 0))))
actual-value: #t
result: PASS
test-name: terminal-window-size ENOTTY
location: /home/pi/code/guix/tests/syscalls.scm:504
source:
+ (test-assert
+ "terminal-window-size ENOTTY"
+ (call-with-input-file
+ "/dev/null"
+ (lambda (port)
+ (catch 'system-error
+ (lambda () (terminal-window-size port))
+ (lambda args
+ (memv (system-error-errno args)
+ (list ENOTTY EINVAL)))))))
actual-value: (25 22)
result: PASS
test-name: terminal-columns
location: /home/pi/code/guix/tests/syscalls.scm:515
source:
+ (test-assert
+ "terminal-columns"
+ (> (terminal-columns) 0))
actual-value: #t
result: PASS
test-name: terminal-columns non-file port
location: /home/pi/code/guix/tests/syscalls.scm:518
source:
+ (test-assert
+ "terminal-columns non-file port"
+ (> (terminal-columns
+ (open-input-string
+ "Join us now, share the software!"))
+ 0))
actual-value: #t
result: PASS
test-name: utmpx-entries
location: /home/pi/code/guix/tests/syscalls.scm:522
source:
+ (test-assert
+ "utmpx-entries"
+ (match (utmpx-entries)
+ (((? utmpx? entries) ...)
+ (every (lambda (entry)
+ (match (utmpx-user entry)
+ ((? string?)
+ (or (not (memv (utmpx-login-type entry)
+ (list (login-type INIT_PROCESS)
+ (login-type LOGIN_PROCESS)
+ (login-type USER_PROCESS))))
+ (> (utmpx-pid entry) 0)))
+ (#f #t)))
+ entries))))
actual-value: #t
result: PASS
test-name: read-utmpx, EOF
location: /home/pi/code/guix/tests/syscalls.scm:539
source:
+ (test-assert
+ "read-utmpx, EOF"
+ (eof-object? (read-utmpx (%make-void-port "r"))))
actual-value: #t
result: PASS
test-name: read-utmpx
location: /home/pi/code/guix/tests/syscalls.scm:544
source:
+ (test-assert
+ "read-utmpx"
+ (let ((result
+ (call-with-input-file
+ "/var/run/utmpx"
+ read-utmpx)))
+ (or (utmpx? result) (eof-object? result))))
result: SKIP
SKIP: tests/gremlin
===================
test-name: elf-dynamic-info-needed, executable
location: /home/pi/code/guix/tests/gremlin.scm:44
source:
+ (test-assert
+ "elf-dynamic-info-needed, executable"
+ (let* ((elf (call-with-input-file %guile-executable read-elf))
+ (dyninfo (elf-dynamic-info elf)))
+ (or (not dyninfo)
+ (lset<=
+ string=?
+ (list (string-append "libguile-" (effective-version))
+ "libgc"
+ "libunistring"
+ "libffi")
+ (map (lambda (lib)
+ (string-take lib (string-contains lib ".so")))
+ (elf-dynamic-info-needed dyninfo))))))
result: SKIP
test-name: expand-origin
location: /home/pi/code/guix/tests/gremlin.scm:55
source:
+ (test-equal
+ "expand-origin"
+ '("OOO/../lib"
+ "OOO"
+ "../OOO/bar/OOO/baz"
+ "ORIGIN/foo")
+ (map (cut expand-origin <> "OOO")
+ '("$ORIGIN/../lib"
+ "${ORIGIN}"
+ "../${ORIGIN}/bar/$ORIGIN/baz"
+ "ORIGIN/foo")))
expected-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo")
actual-value: ("OOO/../lib" "OOO" "../OOO/bar/OOO/baz" "ORIGIN/foo")
result: PASS
SKIP: tests/pypi
================
test-name: guix-package->pypi-name, old URL style
location: /home/pi/code/guix/tests/pypi.scm:78
source:
+ (test-equal
+ "guix-package->pypi-name, old URL style"
+ "psutil"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri "https://pypi.io/packages/source/p/psutil/psutil-4.3.0.tar.gz"))))))
expected-value: "psutil"
actual-value: "psutil"
result: PASS
test-name: guix-package->pypi-name, new URL style
location: /home/pi/code/guix/tests/pypi.scm:86
source:
+ (test-equal
+ "guix-package->pypi-name, new URL style"
+ "certbot"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri "https://pypi.python.org/packages/a2/3b/4756e6a0ceb14e084042a2a65c615d68d25621c6fd446d0fc10d14c4ce7d/certbot-0.8.1.tar.gz"))))))
expected-value: "certbot"
actual-value: "certbot"
result: PASS
test-name: guix-package->pypi-name, several URLs
location: /home/pi/code/guix/tests/pypi.scm:94
source:
+ (test-equal
+ "guix-package->pypi-name, several URLs"
+ "cram"
+ (guix-package->pypi-name
+ (dummy-package
+ "foo"
+ (source
+ (dummy-origin
+ (uri (list "https://bitheap.org/cram/cram-0.7.tar.gz"
+ (pypi-uri "cram" "0.7"))))))))
expected-value: "cram"
actual-value: "cram"
result: PASS
test-name: pypi->guix-package
location: /home/pi/code/guix/tests/pypi.scm:103
source:
+ (test-assert
+ "pypi->guix-package"
+ (mock ((guix import utils)
+ url-fetch
+ (lambda (url file-name)
+ (match url
+ ("https://example.com/foo-1.0.0.tar.gz"
+ (begin
+ (mkdir "foo-1.0.0")
+ (with-output-to-file
+ "foo-1.0.0/requirements.txt"
+ (lambda () (display test-requirements)))
+ (system* "tar" "czvf" file-name "foo-1.0.0/")
+ (delete-file-recursively "foo-1.0.0")
+ (set! test-source-hash
+ (call-with-input-file file-name port-sha256))))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (mock ((guix http-client)
+ http-fetch
+ (lambda (url . rest)
+ (match url
+ ("https://pypi.python.org/pypi/foo/json"
+ (values
+ (open-input-string test-json)
+ (string-length test-json)))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (match (pypi->guix-package "foo")
+ (('package
+ ('name "python-foo")
+ ('version "1.0.0")
+ ('source
+ ('origin
+ ('method 'url-fetch)
+ ('uri ('pypi-uri "foo" 'version))
+ ('sha256 ('base32 (? string? hash)))))
+ ('build-system 'python-build-system)
+ ('propagated-inputs
+ ('quasiquote
+ (("python-bar" ('unquote 'python-bar))
+ ("python-baz" ('unquote 'python-baz)))))
+ ('home-page "http://example.com")
+ ('synopsis "summary")
+ ('description "summary")
+ ('license 'license:lgpl2.0))
+ (string=?
+ (bytevector->nix-base32-string test-source-hash)
+ hash))
+ (x (pk 'fail x #f))))))
foo-1.0.0/
foo-1.0.0/requirements.txt
actual-value: #t
result: PASS
test-name: pypi->guix-package, wheels
location: /home/pi/code/guix/tests/pypi.scm:154
source:
+ (test-assert
+ "pypi->guix-package, wheels"
+ (mock ((guix import utils)
+ url-fetch
+ (lambda (url file-name)
+ (match url
+ ("https://example.com/foo-1.0.0.tar.gz"
+ (begin
+ (mkdir "foo-1.0.0")
+ (with-output-to-file
+ "foo-1.0.0/requirements.txt"
+ (lambda () (display test-requirements)))
+ (system* "tar" "czvf" file-name "foo-1.0.0/")
+ (delete-file-recursively "foo-1.0.0")
+ (set! test-source-hash
+ (call-with-input-file file-name port-sha256))))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ (begin
+ (mkdir "foo-1.0.0.dist-info")
+ (with-output-to-file
+ "foo-1.0.0.dist-info/metadata.json"
+ (lambda () (display test-metadata)))
+ (let ((zip-file (string-append file-name ".zip")))
+ (system*
+ "zip"
+ zip-file
+ "foo-1.0.0.dist-info/metadata.json")
+ (rename-file zip-file file-name))
+ (delete-file-recursively "foo-1.0.0.dist-info")))
+ (_ (error "Unexpected URL: " url)))))
+ (mock ((guix http-client)
+ http-fetch
+ (lambda (url . rest)
+ (match url
+ ("https://pypi.python.org/pypi/foo/json"
+ (values
+ (open-input-string test-json)
+ (string-length test-json)))
+ ("https://example.com/foo-1.0.0-py2.py3-none-any.whl"
+ #f)
+ (_ (error "Unexpected URL: " url)))))
+ (match (pypi->guix-package "foo")
+ (('package
+ ('name "python-foo")
+ ('version "1.0.0")
+ ('source
+ ('origin
+ ('method 'url-fetch)
+ ('uri ('pypi-uri "foo" 'version))
+ ('sha256 ('base32 (? string? hash)))))
+ ('build-system 'python-build-system)
+ ('propagated-inputs
+ ('quasiquote
+ (("python-bar" ('unquote 'python-bar))
+ ("python-baz" ('unquote 'python-baz)))))
+ ('home-page "http://example.com")
+ ('synopsis "summary")
+ ('description "summary")
+ ('license 'license:lgpl2.0))
+ (string=?
+ (bytevector->nix-base32-string test-source-hash)
+ hash))
+ (x (pk 'fail x #f))))))
result: SKIP
random seed for tests: 1518707272
FAIL: tests/guix-package
========================
+ guix package --version
guix package (GNU Guix) 0.14.0.1872-7e0a6
Copyright (C) 2018 the Guix authors
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
+ module_dir=t-guix-package-25045
+ profile=t-profile-25045
+ tmpfile=t-guix-package-file-25045
+ rm -f t-profile-25045 t-guix-package-file-25045
+ trap 'rm -f "$profile" "$profile-"[0-9]* "$tmpfile"; rm -rf "$module_dir" t-home-25045' EXIT
+ guix package --bootstrap -e +
guix package: error: expression "+" does not evaluate to a package
+ true
++ guix build guile-bootstrap
accepted connection from pid 25057, user pi
+ guix package --bootstrap -p t-profile-25045 -i /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
accepted connection from pid 25061, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be installed:
guile-bootstrap 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
The following derivation will be built:
/home/pi/code/guix/test-tmp/store/g8ishw0hl1l31hm8xgkid365am0r37lf-profile.drv
1 package in profile
The following environment variable definitions may be needed:
export PATH="t-profile-25045/bin${PATH:+:}$PATH"
++ guix package -A guile-bootstrap
++ cut -f 1-2
++ guix package -p t-profile-25045 -I
++ cut -f 1-2
+ test 'guile-bootstrap 2.0' = 'guile-bootstrap 2.0'
++ guix package -p t-profile-25045 -I
++ cut -f 3
+ test out = out
+ rm t-profile-25045
+ guix package --bootstrap -p t-profile-25045 -i guile-bootstrap
accepted connection from pid 25082, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be installed:
guile-bootstrap 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
1 package in profile
The following environment variable definitions may be needed:
export PATH="t-profile-25045/bin${PATH:+:}$PATH"
+ test -L t-profile-25045
+ test -L t-profile-25045-1-link
+ test -f t-profile-25045/bin/guile
+ guix gc --list-live
++ readlink t-profile-25045-1-link
+ grep /home/pi/code/guix/test-tmp/store/v7idq6r1w6hwrvxpkl81cb6z3xlxzcib-profile
accepted connection from pid 25086, user pi
finding garbage collector roots...
determining live/dead paths...
/home/pi/code/guix/test-tmp/store/v7idq6r1w6hwrvxpkl81cb6z3xlxzcib-profile
+ guix package --bootstrap -p t-profile-25045 -i guile-bootstrap
accepted connection from pid 25095, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package will be upgraded:
guile-bootstrap 2.0 → 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
nothing to be done
+ test -L t-profile-25045
+ test -L t-profile-25045-1-link
+ test -f t-profile-25045-2-link
+ test -f t-profile-25045/bin/guile
+ guix package -p t-profile-25045 --search-paths
export PATH="t-profile-25045/bin"
+ guix package -p t-profile-25045 --search-paths
+ grep '^export PATH='
export PATH="t-profile-25045/bin"
++ guix package -p t-profile-25045 --search-paths
++ wc -l
+ test 1 = 1
+ set -e
+ set -x
++ guix package --search-paths=prefix -p /home/pi/code/guix/t-profile-25045
+ eval export 'PATH="/home/pi/code/guix/t-profile-25045/bin${PATH:+:}$PATH"'
++ export PATH=/home/pi/code/guix/t-profile-25045/bin:/home/pi/code/guix/scripts:/home/pi/code/guix:/home/pi/bin:/home/pi/.guix-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/sbin:/home/pi/bin:/home/pi/.guix-profile/bin:/home/pi/bin:/home/pi/.guix-profile/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
++ PATH=/home/pi/code/guix/t-profile-25045/bin:/home/pi/code/guix/scripts:/home/pi/code/guix:/home/pi/bin:/home/pi/.guix-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin:/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/sbin:/home/pi/bin:/home/pi/.guix-profile/bin:/home/pi/bin:/home/pi/.guix-profile/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
++ type -P guile
+ test /home/pi/code/guix/t-profile-25045/bin/guile = /home/pi/code/guix/t-profile-25045/bin/guile
+ type -P rm
/gnu/store/ya59rc1yf81lhva2kj8mw51x1jvy1hzj-profile/bin/rm
+ guix package -p t-profile-25045 --delete-generations=42
accepted connection from pid 25116, user pi
guix package: error: no matching generation
+ true
+ guix package -p t-profile-25045 --delete-generations=0
accepted connection from pid 25120, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
+ guix package --bootstrap -i guile gcc -p t-profile-25045 -n
accepted connection from pid 25124, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following packages would be installed:
guile 2.2.3 /home/pi/code/guix/test-tmp/store/nlr87kcpnrhk932lk4zzqcd17b588sri-guile-2.2.3
gcc 7.3.0 /home/pi/code/guix/test-tmp/store/kwb8mznagmvq9lvfq5dcx264am5qka36-gcc-7.3.0
substitute: warning: authentication and authorization of substitutes disabled!
substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable
The following derivations would be built:
/home/pi/code/guix/test-tmp/store/w25crzdnnfddwygmsp1g6app8jl3hqag-profile.drv
/home/pi/code/guix/test-tmp/store/rwhm2ass38m1wvi2mi3996bd7v0r1hcs-gcc-7.3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5qp7q3v80pm9jrivhsmfvx4fslsf1y94-libelf-0.8.13.tar.gz.drv
/home/pi/code/guix/test-tmp/store/hp0xi0k8v64rr6lwc2yqrjc72i9ixxhb-procps-ng-3.3.12.tar.xz.drv
/home/pi/code/guix/test-tmp/store/lx3f4h1lnr7skjrbr1y4afzdavbrf4q8-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/j4k3ky5k4gn6drw7sqp92pri95j8qhyn-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/kqj8v27rlamdsc6jkzr6n523ffwlkkc5-procps-3.3.12.drv
/home/pi/code/guix/test-tmp/store/nhcyypgn31dwj1zr1kvbdkzgnq6g4wpj-isl-0.18.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/9gsn1v15spl5jys802h7d4lprwwq7qdp-isl-0.18.drv
/home/pi/code/guix/test-tmp/store/g14as7v30win46lvicvf8ncpx29zawq0-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/in11cxbvahj8h40hdk7g4x2mrarsh2bz-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/rv1ssr2mipajpnni5q3fml479smhz41p-libelf-0.8.13.drv
/home/pi/code/guix/test-tmp/store/x5fsf5gamcpccbk9jn942jmsgm59fcrk-mpc-1.0.3.drv
/home/pi/code/guix/test-tmp/store/xx4b4bb142daspyl291gj2n6ii4lbr52-mpfr-3.1.5.drv
/home/pi/code/guix/test-tmp/store/ypqj62frlixjcibr5l1wr8q6746aciiq-gcc-7.3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/x5hbrhm3yy8pyzz78fbcimyfnj5ln4f3-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/rx66ib8v7rlv6941y3kag75p17p54371-guile-2.2.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9lh0vw29hgmdycdw1cpddpjm0a673v6n-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/1r41zg64li7w53lpzklpqksgps6ry4gx-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5y8vn8709862wpbwrchff02329b6d1zd-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/qy6ia1m2k3m7n2kbgvlial107hvs8vkw-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/cbqfxpi9nq079mhx490zy3k4fv1mc13k-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/hl36fv9d07yqx7d8q41svap5x3ia6bbw-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/nm66bvx35gf08l6yiljwscpy322vhv1s-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/pp662gsn5jnyig5v05s86ms1wrcgjafm-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/rrix9i368qha9p96ipq861516yw4pg5a-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/yw9dv5ii86gak7a39vzq36in1yv3ggay-guile-2.2.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/43q8vlipvj4m0sdx4sfnc08hqybkkkk1-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/h7ba8x5yzzdjbwssclxx5r7xkdxjj1n7-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/lzrq9sd5m5krvlnmh8f42ywjj1nmnznh-zlib-1.2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/47wpi64k47rxrx07cp4bswamcxwnmwfq-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/sh9xiz29vn933nqv4a0ki23x6bmfhcrb-libstdc++-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j6aw9ksgniahgxy6kgxw53s965j8pfc7-sed-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/py1l9h0kxz5pp9cakgd3zdbj3w0jg8pr-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/2wi4vfnf184lic9dc8j3sbdika88hs8q-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a8mjszzaaccjaiawm3i8cvqkwvwng2xk-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/5icarcdc2mmd1lbhdw806906ikzgsy7l-lzip-1.18.tar.gz.drv
/home/pi/code/guix/test-tmp/store/v36w0zp2xxv0cknc23g1fa8cj2abw1vl-ed-1.14.2.tar.lz.drv
/home/pi/code/guix/test-tmp/store/wb0zqwhm5x9nac7qxr9nq7n1776dwkxz-lzip-1.18.drv
/home/pi/code/guix/test-tmp/store/s12dz9yz26df5rpikslzmc1fzzph7fn1-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kfsvv9m6qcm92d7a78i2nj6x85k8cqxp-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/q5xnawx8g1vq8b9lwf7hlg28gbayqbpg-ed-1.14.2.drv
/home/pi/code/guix/test-tmp/store/caw9ki0a3vgy19dkzjrlxi58bbl52yvn-xz-5.2.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/4pjpj2an4mjdkrwms2zcy1w87jhg773c-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/bssz4y5xmdh7jvzycjj9vpkwycvqzmv9-bzip2-1.0.6.tar.gz.drv
/home/pi/code/guix/test-tmp/store/9747yi5xjvj477f598iri8zbvjarlj0h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s3p7brz375s1l6rljca75x3hgi81nvpd-readline-7.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kzqzx1g52wgdiq6npc60kmfm4j4ix5v2-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s930xaxx9cwn0v1vd07hhs9b0wk3hfah-ncurses-6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/a5l8dx6k3487qs7j5gj5kgjj7m7224rw-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8v7zhlav1i6g8bl0q78d3m5dqdhyg7yz-libffi-3.2.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/bdm2ycnns668q2p67vgi9s2xag2kx96l-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/7k2ac1whyffzwlk0n3l9j0mfq5lq78lg-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/jy6qjksfscrph3yx4m3jlamfd86kncyg-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/k5x6hnjkz6wsxj3nwp0ss5i7z409pm70-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/nffz7ml39h9mlnjj0jchcgfig28dva9h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/pz2cnzyfwc5lmj04w669ris5bv5x06p1-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/j08ck3ll4cdax90m1f264yzb0rq4r678-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/whymzms8024q4lkydgxkv51rlc94iwai-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/g4y2gjr8iwm3lzxbshkdgd16vpznja3g-pkg-config-0.29.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/fpr57h5n7m0698gy1j1m60jsv0kdz7dw-libatomic_ops-7.4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/7n90swxncwxcbkylpl7yvbcwyzqn5cpg-gc-7.6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/k5964kprn381dkpi5sikjgpykpbggm57-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/nranf69m0fsi59wgv5hh5ikjb9z84253-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/ll6glb20yamdabxxca7a5m6in3kzprzr-libtool-2.4.6.tar.xz.drv
/home/pi/code/guix/test-tmp/store/4mx43vigc8yk8ms3mqac33d1azk2n3f4-libltdl-2.4.6.drv
/home/pi/code/guix/test-tmp/store/gm2nqpi7grjs2pczpdl5x4hcg92s72bv-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/j47717cq8fb4a6vzi5zncjb559d6pcjz-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/r0ccql5qa3hsfpsaknycyz76z6n6l2cz-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/p8a50i4n9blrb3w246bwq2xx0qkxi481-linux-libre-4.4.47-gnu.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5njacznalgzy7bqhds31jag7ig6gi831-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/kbm668ym6zxjdqs0vfslnq9ay7ax76v3-module-import.drv
/home/pi/code/guix/test-tmp/store/wfqrq6zqin88ai5jcqyb6b70vq93nvl7-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nxnvfl2vbsafi6863hbiah6fgpww9bml-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nvh26y5xjvg5nm0g4605fplqxx1l5frr-m4-1.4.18.tar.xz.drv
/home/pi/code/guix/test-tmp/store/mfdn2pqp4mma7waf3s46hxmcf3jlql0f-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/pvj16226y8d1313r83b61isf6d7h9qhx-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y4da1d4849iy8b1b2f2sqf08v72kh2gn-libcap-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rx0d5vv7jiliknd9yayjhv667wwd1kan-expat-2.2.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/8zah1nmkad4v02vbpcdbffbyjj3ra0lh-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/sx04dgy519l2071v82xyxddy7d1gcl97-acl-2.2.52.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/jjil12wj45kzqsfr18d84slrww6hq2j6-attr-2.4.47.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/3izmyh79zhgx3vmfgc9h00hfwcdf97mj-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/8gcai03sar21rb9yp1ypywkw2l6l396y-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/bccicspcidkli07h7w4pg6gdmp9p5yxv-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/8215npjc46d78j25zq6wavifw27yzrs0-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/62s12zyqmcnvhq8akbfjanh2mmpphjax-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8rddn0cnpx4dwm79nizqpy3lh3d6cpyv-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/bva9wbpqyr83my71dlwgcz2xhmm5xl11-libcap-2.25.drv
/home/pi/code/guix/test-tmp/store/jmydrlap7rbj1a2bd70mjv7x3zzsdj3i-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/yczxys0971kbc7q17c97kdk79l50q5cc-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/8iylq5nvb8zzwmmgqsb6qfazn5c3bv8w-gzip-1.8.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5nywc7njhaigj4agb19qaz4v873yh5cj-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/dz65vwlx3i402i1b4y9rd18pjqddsv4d-module-import.drv
/home/pi/code/guix/test-tmp/store/rc36gckxijd65sfvq77bf03a42fm7yg8-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/1z46cxj3adnzcrqwqmn95q0l8shd8xmm-bash44-010.drv
/home/pi/code/guix/test-tmp/store/4qnb4bxrixdfqra9g7zff752lw8v0a6a-bash44-009.drv
/home/pi/code/guix/test-tmp/store/66xgfb4lga6ca9ss6kxn81sjwm0cd7fb-bash44-007.drv
/home/pi/code/guix/test-tmp/store/82z8ln9pmfmw9zjxm8nqvilz8xxmc4ps-bash44-005.drv
/home/pi/code/guix/test-tmp/store/fxqr4zh789dddfvicgp41frvnjhvsi8h-bash-4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/m4lr284jgwc6v2j2mmdbcf8i6ylywgn5-bash44-001.drv
/home/pi/code/guix/test-tmp/store/ngpna3llgh8agijxy46pn6gnxgsr1qrf-bash44-002.drv
/home/pi/code/guix/test-tmp/store/ny69pxbqm9bdln5h40kyrj5a7hxcma82-bash44-003.drv
/home/pi/code/guix/test-tmp/store/pmj7vy8jf5863iyh9jc68f83x6skjwb8-bash44-008.drv
/home/pi/code/guix/test-tmp/store/vbjhsz7s7kfpd23f8q2sr6wvwbrsi8mz-bash44-012.drv
/home/pi/code/guix/test-tmp/store/vn8g2a6cd4rgwd7wkjarxw2spfpln6wl-bash44-004.drv
/home/pi/code/guix/test-tmp/store/xm7m3vz1yai7w06dxqhyink02z1vb4zy-bash44-011.drv
/home/pi/code/guix/test-tmp/store/zcmrjr4abmbkx5kdcvajs3acwv4aj10j-bash44-006.drv
/home/pi/code/guix/test-tmp/store/vjc9glznsbdgrbgwjn0y3kwnpm4k12nl-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w2x79zdd0xf6vrzvcdqqifxhbcl5hk6p-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wmn9axmml3qw5vgkcjx499hmj84fjyis-glibc-intermediate-2.25.drv
/home/pi/code/guix/test-tmp/store/20m5qyjqahccgq520izld7w640mj8y3b-gcc-5.4.0.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/6aah13lq4a0g1rsj09iw2f0akx9sbxfi-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/syf0qgrpz3nxi8h1psidha7icypzcg5v-gcc-4.9.4.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/5iyk1l8904cx684pgyxvryxzis23qd4c-gcc-4.9.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/010mrb32kjik9rrp6q4xn9ygv4fbj84p-mpfr-3.1.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6cxkaad65jjvbj8qdcryj6hcdpixrph1-libstdc++-boot0-4.9.4.drv
/home/pi/code/guix/test-tmp/store/6kzpa34ac78bl7dqa8ffh8fmm5cblrql-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/xv9sd3nyswibws01p5dd5lk5nbaklahh-mpc-1.0.3.tar.gz.drv
/home/pi/code/guix/test-tmp/store/z9794f6hghq0863mhq4d50ndxl1zsclm-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/96gxpgknqh4xgsj1sdgxcbj233b5cmwb-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/jmnxlxrx9blzm3clqvck5scl4zixgy9q-perl-5.26.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kxk8lgmyrj5hv2vx0w6v42wbay1j6hi2-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s603hf4h1yvi2c1f85a90n4fchc58xw2-gettext-0.19.8.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/01g3pmxi4q5zybg7lmfjcgc19ja5z7na-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a0l869619xfm75mlykwz02bzdalkx6jd-texinfo-6.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/chwc3scj1w3af40yclvpjanz211mb7qr-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/gh6120j4cmm7ji3a12hvaa4vd9n3zvry-gettext-boot0-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/gv3whbx6r9w9mb2hbcmz22bsi47r3fgi-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/gxddbfhgsmxmyyhyb7r2zbah1fbqvygq-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rw63pj62aiwbhfi1zjz92y10zmgx68gf-gcc-cross-boot0-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w3bkdfkkgq2b6wgln2a18mayzia2qz8m-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/8fcgpzakyv0xmqr0a6dg6rrqi23kch5g-libsigsegv-2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/0wky2gc5jlywvnkmk20ijz8rnhrhl3y6-gawk-4.1.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/3fqn41dc9ng8ylxljvn9vpv7pqpx59c2-libsigsegv-2.11.drv
/home/pi/code/guix/test-tmp/store/8x0z65qa197a7swblhphq70lq5k8adm4-binutils-2.28.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/gwnwb9ldkqy0bxg5f1i0jg6yyhsnv5mg-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6lgb9wzc03cksdgc2ib52xlmhglgm94n-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9wsr7w7w8rvs02q63rh73z8g7cby190p-ld-wrapper-boot0-0.drv
/home/pi/code/guix/test-tmp/store/dld8867smzrpyv1dc4wp3w42sygb44jb-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/n20ymaf8xw3c8dx1v1996z7yfr2h0c22-binutils-cross-boot0-2.28.drv
/home/pi/code/guix/test-tmp/store/n793p7xk02yldnmdn9zz9kc6nw2ciiif-ld-wrapper-boot3-0.drv
/home/pi/code/guix/test-tmp/store/1ansvvkln0jzd5ikvs7y6mq777h7dg9y-tar-1.29.drv
/home/pi/code/guix/test-tmp/store/1c43qn9aml7l8f61djmlgw0x9ib113lg-gawk-4.1.4.drv
/home/pi/code/guix/test-tmp/store/1jhvvm2yrqmmp0ms0hgd5zibmm1siwsj-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/1zw944az1ynvc9clh12ph18svb4z2i3p-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/361j78mv3mck9cyhn5976y3lrswgqwv5-glibc-utf8-locales-2.25.drv
/home/pi/code/guix/test-tmp/store/3k3icphvhnf0y92ln6ga8g5nhdsyyjxz-diffutils-3.6.drv
/home/pi/code/guix/test-tmp/store/564mswhzbly7z2ydarlw82fr3im06kqc-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/5n7ha4jwdx7zzln65f9cn8ix3chqmrvr-findutils-4.6.0.drv
/home/pi/code/guix/test-tmp/store/6a48ckx02lm0z53xg68r95mmkdfprbhp-module-import.drv
/home/pi/code/guix/test-tmp/store/9qzsrshmdwddxfkdn5arwr9nbqir9qrd-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/cgdlblnxf1zwaq4hw6gkmivppn65f85y-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/fp6lh1sv3sa73wvs22qjb4gmg15qxpic-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/hgj2606jn61ijvibp53av2c80cx8yppv-linux-libre-headers-4.4.47.drv
/home/pi/code/guix/test-tmp/store/j1kmmcd0cp0h51amyq441h2ahkmn7whp-ld-wrapper-0.drv
/home/pi/code/guix/test-tmp/store/jh279qphzff63hmvily4bhg6c0as5all-make-4.2.1.drv
/home/pi/code/guix/test-tmp/store/mjs00pmjislknl4i98y038z1ir0dgxnz-guile-2.2.2.drv
/home/pi/code/guix/test-tmp/store/nlcjd3pm7w9yyh4g33g6kfz3p0q8b5gp-bzip2-1.0.6.drv
/home/pi/code/guix/test-tmp/store/p4bzb8hcciqmn9s96p2f2rrpg6rp49gm-binutils-2.28.drv
/home/pi/code/guix/test-tmp/store/qn0g1g5bipjn6k10pmk5yy92g4v3l4m0-xz-5.2.2.drv
/home/pi/code/guix/test-tmp/store/ri8b5gca2f2h06cxny56w0bbb8a9z86p-patch-2.7.5.drv
/home/pi/code/guix/test-tmp/store/svkck37nskq4nmci56x5bcv7vijalbms-grep-3.0.drv
/home/pi/code/guix/test-tmp/store/vmfh0lskxhaa2pidf5m68gk4dafr9jpn-sed-4.4.drv
/home/pi/code/guix/test-tmp/store/vrnzy86r2f1si799d0r9ncbf4hbj0jzh-gcc-5.4.0.drv
/home/pi/code/guix/test-tmp/store/z9if03n7l35xqb1py8cpv8db95skvc2a-file-5.30.drv
/home/pi/code/guix/test-tmp/store/8g1a3j7ymgi11pjhw84zgkfsszjf8l8p-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/c5b3gir8z34zn0vzpyh5l1w2qxnwi7zf-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/cps9hglw99gicmar0cbm47qw16ja151n-guile-2.2.3.drv
/home/pi/code/guix/test-tmp/store/hzpf137naf7bs4jfm4ig3wk0idqx4z0a-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/jbqyjnci48dilni9000laqcfsv4171yn-gcc-7.3.0.drv
/home/pi/code/guix/test-tmp/store/yb10wcy18f2glgyi4crawm4kim1b6vvm-libltdl-2.4.6.drv
+ guix package --bootstrap -i glibc:debug -p t-profile-25045 -n
accepted connection from pid 25131, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package would be installed:
glibc:debug 2.25 /home/pi/code/guix/test-tmp/store/gvx55mpa6kw3mv26wjihrsg3dih2kzmd-glibc-2.25-debug
substitute: warning: authentication and authorization of substitutes disabled!
substitute: guix substitute: warning: ACL for archive imports seems to be uninitialized, substitutes may be unavailable
The following derivations would be built:
/home/pi/code/guix/test-tmp/store/1f1rdhqp5b9z6v13nq5v62f206r3hj75-profile.drv
/home/pi/code/guix/test-tmp/store/lzrq9sd5m5krvlnmh8f42ywjj1nmnznh-zlib-1.2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/47wpi64k47rxrx07cp4bswamcxwnmwfq-zlib-1.2.11.drv
/home/pi/code/guix/test-tmp/store/sh9xiz29vn933nqv4a0ki23x6bmfhcrb-libstdc++-5.4.0.drv
/home/pi/code/guix/test-tmp/store/j6aw9ksgniahgxy6kgxw53s965j8pfc7-sed-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/py1l9h0kxz5pp9cakgd3zdbj3w0jg8pr-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/2wi4vfnf184lic9dc8j3sbdika88hs8q-grep-3.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a8mjszzaaccjaiawm3i8cvqkwvwng2xk-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/5icarcdc2mmd1lbhdw806906ikzgsy7l-lzip-1.18.tar.gz.drv
/home/pi/code/guix/test-tmp/store/v36w0zp2xxv0cknc23g1fa8cj2abw1vl-ed-1.14.2.tar.lz.drv
/home/pi/code/guix/test-tmp/store/wb0zqwhm5x9nac7qxr9nq7n1776dwkxz-lzip-1.18.drv
/home/pi/code/guix/test-tmp/store/s12dz9yz26df5rpikslzmc1fzzph7fn1-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kfsvv9m6qcm92d7a78i2nj6x85k8cqxp-patch-2.7.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/q5xnawx8g1vq8b9lwf7hlg28gbayqbpg-ed-1.14.2.drv
/home/pi/code/guix/test-tmp/store/caw9ki0a3vgy19dkzjrlxi58bbl52yvn-xz-5.2.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/4pjpj2an4mjdkrwms2zcy1w87jhg773c-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/bssz4y5xmdh7jvzycjj9vpkwycvqzmv9-bzip2-1.0.6.tar.gz.drv
/home/pi/code/guix/test-tmp/store/9747yi5xjvj477f598iri8zbvjarlj0h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s3p7brz375s1l6rljca75x3hgi81nvpd-readline-7.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kzqzx1g52wgdiq6npc60kmfm4j4ix5v2-readline-7.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a5l8dx6k3487qs7j5gj5kgjj7m7224rw-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8v7zhlav1i6g8bl0q78d3m5dqdhyg7yz-libffi-3.2.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/bdm2ycnns668q2p67vgi9s2xag2kx96l-libffi-3.2.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/7k2ac1whyffzwlk0n3l9j0mfq5lq78lg-libffi-3.2.1.drv
/home/pi/code/guix/test-tmp/store/jy6qjksfscrph3yx4m3jlamfd86kncyg-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/k5x6hnjkz6wsxj3nwp0ss5i7z409pm70-readline-7.0.drv
/home/pi/code/guix/test-tmp/store/nffz7ml39h9mlnjj0jchcgfig28dva9h-guile-2.2.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/pz2cnzyfwc5lmj04w669ris5bv5x06p1-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/lx3f4h1lnr7skjrbr1y4afzdavbrf4q8-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wfqrq6zqin88ai5jcqyb6b70vq93nvl7-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/j08ck3ll4cdax90m1f264yzb0rq4r678-libunistring-0.9.7.tar.xz.drv
/home/pi/code/guix/test-tmp/store/whymzms8024q4lkydgxkv51rlc94iwai-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/fpr57h5n7m0698gy1j1m60jsv0kdz7dw-libatomic_ops-7.4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/7n90swxncwxcbkylpl7yvbcwyzqn5cpg-gc-7.6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/k5964kprn381dkpi5sikjgpykpbggm57-libatomic-ops-7.4.4.drv
/home/pi/code/guix/test-tmp/store/nranf69m0fsi59wgv5hh5ikjb9z84253-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/ll6glb20yamdabxxca7a5m6in3kzprzr-libtool-2.4.6.tar.xz.drv
/home/pi/code/guix/test-tmp/store/4mx43vigc8yk8ms3mqac33d1azk2n3f4-libltdl-2.4.6.drv
/home/pi/code/guix/test-tmp/store/gm2nqpi7grjs2pczpdl5x4hcg92s72bv-libgc-7.6.0.drv
/home/pi/code/guix/test-tmp/store/j47717cq8fb4a6vzi5zncjb559d6pcjz-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/r0ccql5qa3hsfpsaknycyz76z6n6l2cz-libunistring-0.9.7.drv
/home/pi/code/guix/test-tmp/store/g4y2gjr8iwm3lzxbshkdgd16vpznja3g-pkg-config-0.29.2.tar.gz.drv
/home/pi/code/guix/test-tmp/store/s930xaxx9cwn0v1vd07hhs9b0wk3hfah-ncurses-6.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/1r41zg64li7w53lpzklpqksgps6ry4gx-ncurses-6.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/hl36fv9d07yqx7d8q41svap5x3ia6bbw-pkg-config-0.29.2.drv
/home/pi/code/guix/test-tmp/store/hp0xi0k8v64rr6lwc2yqrjc72i9ixxhb-procps-ng-3.3.12.tar.xz.drv
/home/pi/code/guix/test-tmp/store/kqj8v27rlamdsc6jkzr6n523ffwlkkc5-procps-3.3.12.drv
/home/pi/code/guix/test-tmp/store/pp662gsn5jnyig5v05s86ms1wrcgjafm-ncurses-6.0.drv
/home/pi/code/guix/test-tmp/store/flzsb5jpdnzz6m4vc4rih0z09kj6ziay-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/psf7p9336sppa96mv7z87iyybi0ijldz-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/p8a50i4n9blrb3w246bwq2xx0qkxi481-linux-libre-4.4.47-gnu.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5njacznalgzy7bqhds31jag7ig6gi831-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/kbm668ym6zxjdqs0vfslnq9ay7ax76v3-module-import.drv
/home/pi/code/guix/test-tmp/store/9lh0vw29hgmdycdw1cpddpjm0a673v6n-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nxnvfl2vbsafi6863hbiah6fgpww9bml-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/nvh26y5xjvg5nm0g4605fplqxx1l5frr-m4-1.4.18.tar.xz.drv
/home/pi/code/guix/test-tmp/store/mfdn2pqp4mma7waf3s46hxmcf3jlql0f-m4-1.4.18.drv
/home/pi/code/guix/test-tmp/store/pvj16226y8d1313r83b61isf6d7h9qhx-gmp-6.1.2.tar.xz.drv
/home/pi/code/guix/test-tmp/store/y4da1d4849iy8b1b2f2sqf08v72kh2gn-libcap-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rx0d5vv7jiliknd9yayjhv667wwd1kan-expat-2.2.1.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/8zah1nmkad4v02vbpcdbffbyjj3ra0lh-expat-2.2.1.drv
/home/pi/code/guix/test-tmp/store/sx04dgy519l2071v82xyxddy7d1gcl97-acl-2.2.52.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/jjil12wj45kzqsfr18d84slrww6hq2j6-attr-2.4.47.src.tar.gz.drv
/home/pi/code/guix/test-tmp/store/3izmyh79zhgx3vmfgc9h00hfwcdf97mj-attr-2.4.47.drv
/home/pi/code/guix/test-tmp/store/8gcai03sar21rb9yp1ypywkw2l6l396y-acl-2.2.52.src.tar.xz.drv
/home/pi/code/guix/test-tmp/store/bccicspcidkli07h7w4pg6gdmp9p5yxv-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/8215npjc46d78j25zq6wavifw27yzrs0-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/62s12zyqmcnvhq8akbfjanh2mmpphjax-coreutils-8.27.tar.xz.drv
/home/pi/code/guix/test-tmp/store/8rddn0cnpx4dwm79nizqpy3lh3d6cpyv-acl-2.2.52.drv
/home/pi/code/guix/test-tmp/store/bva9wbpqyr83my71dlwgcz2xhmm5xl11-libcap-2.25.drv
/home/pi/code/guix/test-tmp/store/jmydrlap7rbj1a2bd70mjv7x3zzsdj3i-gmp-6.1.2.drv
/home/pi/code/guix/test-tmp/store/yczxys0971kbc7q17c97kdk79l50q5cc-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/8iylq5nvb8zzwmmgqsb6qfazn5c3bv8w-gzip-1.8.tar.xz.drv
/home/pi/code/guix/test-tmp/store/5nywc7njhaigj4agb19qaz4v873yh5cj-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/dz65vwlx3i402i1b4y9rd18pjqddsv4d-module-import.drv
/home/pi/code/guix/test-tmp/store/rc36gckxijd65sfvq77bf03a42fm7yg8-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/1z46cxj3adnzcrqwqmn95q0l8shd8xmm-bash44-010.drv
/home/pi/code/guix/test-tmp/store/4qnb4bxrixdfqra9g7zff752lw8v0a6a-bash44-009.drv
/home/pi/code/guix/test-tmp/store/66xgfb4lga6ca9ss6kxn81sjwm0cd7fb-bash44-007.drv
/home/pi/code/guix/test-tmp/store/82z8ln9pmfmw9zjxm8nqvilz8xxmc4ps-bash44-005.drv
/home/pi/code/guix/test-tmp/store/fxqr4zh789dddfvicgp41frvnjhvsi8h-bash-4.4.tar.gz.drv
/home/pi/code/guix/test-tmp/store/m4lr284jgwc6v2j2mmdbcf8i6ylywgn5-bash44-001.drv
/home/pi/code/guix/test-tmp/store/ngpna3llgh8agijxy46pn6gnxgsr1qrf-bash44-002.drv
/home/pi/code/guix/test-tmp/store/ny69pxbqm9bdln5h40kyrj5a7hxcma82-bash44-003.drv
/home/pi/code/guix/test-tmp/store/pmj7vy8jf5863iyh9jc68f83x6skjwb8-bash44-008.drv
/home/pi/code/guix/test-tmp/store/vbjhsz7s7kfpd23f8q2sr6wvwbrsi8mz-bash44-012.drv
/home/pi/code/guix/test-tmp/store/vn8g2a6cd4rgwd7wkjarxw2spfpln6wl-bash44-004.drv
/home/pi/code/guix/test-tmp/store/xm7m3vz1yai7w06dxqhyink02z1vb4zy-bash44-011.drv
/home/pi/code/guix/test-tmp/store/zcmrjr4abmbkx5kdcvajs3acwv4aj10j-bash44-006.drv
/home/pi/code/guix/test-tmp/store/vjc9glznsbdgrbgwjn0y3kwnpm4k12nl-gcc-cross-boot0-wrapped-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w2x79zdd0xf6vrzvcdqqifxhbcl5hk6p-bash-4.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/wmn9axmml3qw5vgkcjx499hmj84fjyis-glibc-intermediate-2.25.drv
/home/pi/code/guix/test-tmp/store/20m5qyjqahccgq520izld7w640mj8y3b-gcc-5.4.0.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/6aah13lq4a0g1rsj09iw2f0akx9sbxfi-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/syf0qgrpz3nxi8h1psidha7icypzcg5v-gcc-4.9.4.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/5iyk1l8904cx684pgyxvryxzis23qd4c-gcc-4.9.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/010mrb32kjik9rrp6q4xn9ygv4fbj84p-mpfr-3.1.5.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6cxkaad65jjvbj8qdcryj6hcdpixrph1-libstdc++-boot0-4.9.4.drv
/home/pi/code/guix/test-tmp/store/6kzpa34ac78bl7dqa8ffh8fmm5cblrql-gmp-6.0.0a.tar.xz.drv
/home/pi/code/guix/test-tmp/store/xv9sd3nyswibws01p5dd5lk5nbaklahh-mpc-1.0.3.tar.gz.drv
/home/pi/code/guix/test-tmp/store/z9794f6hghq0863mhq4d50ndxl1zsclm-gcc-5.4.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/96gxpgknqh4xgsj1sdgxcbj233b5cmwb-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/jmnxlxrx9blzm3clqvck5scl4zixgy9q-perl-5.26.0.tar.gz.drv
/home/pi/code/guix/test-tmp/store/kxk8lgmyrj5hv2vx0w6v42wbay1j6hi2-perl-5.26.0.tar.xz.drv
/home/pi/code/guix/test-tmp/store/s603hf4h1yvi2c1f85a90n4fchc58xw2-gettext-0.19.8.1.tar.gz.drv
/home/pi/code/guix/test-tmp/store/01g3pmxi4q5zybg7lmfjcgc19ja5z7na-gettext-0.19.8.1.tar.xz.drv
/home/pi/code/guix/test-tmp/store/a0l869619xfm75mlykwz02bzdalkx6jd-texinfo-6.3.tar.xz.drv
/home/pi/code/guix/test-tmp/store/chwc3scj1w3af40yclvpjanz211mb7qr-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/gh6120j4cmm7ji3a12hvaa4vd9n3zvry-gettext-boot0-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/gv3whbx6r9w9mb2hbcmz22bsi47r3fgi-perl-boot0-5.26.0.drv
/home/pi/code/guix/test-tmp/store/gxddbfhgsmxmyyhyb7r2zbah1fbqvygq-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/rw63pj62aiwbhfi1zjz92y10zmgx68gf-gcc-cross-boot0-5.4.0.drv
/home/pi/code/guix/test-tmp/store/w3bkdfkkgq2b6wgln2a18mayzia2qz8m-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/8fcgpzakyv0xmqr0a6dg6rrqi23kch5g-libsigsegv-2.11.tar.gz.drv
/home/pi/code/guix/test-tmp/store/0wky2gc5jlywvnkmk20ijz8rnhrhl3y6-gawk-4.1.4.tar.xz.drv
/home/pi/code/guix/test-tmp/store/3fqn41dc9ng8ylxljvn9vpv7pqpx59c2-libsigsegv-2.11.drv
/home/pi/code/guix/test-tmp/store/8x0z65qa197a7swblhphq70lq5k8adm4-binutils-2.28.tar.bz2.drv
/home/pi/code/guix/test-tmp/store/gwnwb9ldkqy0bxg5f1i0jg6yyhsnv5mg-binutils-2.28.tar.xz.drv
/home/pi/code/guix/test-tmp/store/6lgb9wzc03cksdgc2ib52xlmhglgm94n-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/9wsr7w7w8rvs02q63rh73z8g7cby190p-ld-wrapper-boot0-0.drv
/home/pi/code/guix/test-tmp/store/dld8867smzrpyv1dc4wp3w42sygb44jb-tar-1.29.tar.xz.drv
/home/pi/code/guix/test-tmp/store/n20ymaf8xw3c8dx1v1996z7yfr2h0c22-binutils-cross-boot0-2.28.drv
/home/pi/code/guix/test-tmp/store/n793p7xk02yldnmdn9zz9kc6nw2ciiif-ld-wrapper-boot3-0.drv
/home/pi/code/guix/test-tmp/store/1ansvvkln0jzd5ikvs7y6mq777h7dg9y-tar-1.29.drv
/home/pi/code/guix/test-tmp/store/1c43qn9aml7l8f61djmlgw0x9ib113lg-gawk-4.1.4.drv
/home/pi/code/guix/test-tmp/store/1jhvvm2yrqmmp0ms0hgd5zibmm1siwsj-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/1zw944az1ynvc9clh12ph18svb4z2i3p-module-import-compiled.drv
/home/pi/code/guix/test-tmp/store/361j78mv3mck9cyhn5976y3lrswgqwv5-glibc-utf8-locales-2.25.drv
/home/pi/code/guix/test-tmp/store/3k3icphvhnf0y92ln6ga8g5nhdsyyjxz-diffutils-3.6.drv
/home/pi/code/guix/test-tmp/store/564mswhzbly7z2ydarlw82fr3im06kqc-bash-minimal-4.4.12.drv
/home/pi/code/guix/test-tmp/store/5n7ha4jwdx7zzln65f9cn8ix3chqmrvr-findutils-4.6.0.drv
/home/pi/code/guix/test-tmp/store/6a48ckx02lm0z53xg68r95mmkdfprbhp-module-import.drv
/home/pi/code/guix/test-tmp/store/9qzsrshmdwddxfkdn5arwr9nbqir9qrd-coreutils-8.27.drv
/home/pi/code/guix/test-tmp/store/fp6lh1sv3sa73wvs22qjb4gmg15qxpic-gzip-1.8.drv
/home/pi/code/guix/test-tmp/store/gz2r6kb5sl8azqxqk9w4nnzda8l5wk7p-bash-static-4.4.12.drv
/home/pi/code/guix/test-tmp/store/hgj2606jn61ijvibp53av2c80cx8yppv-linux-libre-headers-4.4.47.drv
/home/pi/code/guix/test-tmp/store/i3pnm4ci86by26ln5qvvr49pl1n9x78p-gettext-minimal-0.19.8.1.drv
/home/pi/code/guix/test-tmp/store/in11cxbvahj8h40hdk7g4x2mrarsh2bz-texinfo-6.3.drv
/home/pi/code/guix/test-tmp/store/j1kmmcd0cp0h51amyq441h2ahkmn7whp-ld-wrapper-0.drv
/home/pi/code/guix/test-tmp/store/j4k3ky5k4gn6drw7sqp92pri95j8qhyn-perl-5.26.0.drv
/home/pi/code/guix/test-tmp/store/jh279qphzff63hmvily4bhg6c0as5all-make-4.2.1.drv
/home/pi/code/guix/test-tmp/store/mjs00pmjislknl4i98y038z1ir0dgxnz-guile-2.2.2.drv
/home/pi/code/guix/test-tmp/store/nlcjd3pm7w9yyh4g33g6kfz3p0q8b5gp-bzip2-1.0.6.drv
/home/pi/code/guix/test-tmp/store/p4bzb8hcciqmn9s96p2f2rrpg6rp49gm-binutils-2.28.drv
/home/pi/code/guix/test-tmp/store/qn0g1g5bipjn6k10pmk5yy92g4v3l4m0-xz-5.2.2.drv
/home/pi/code/guix/test-tmp/store/ri8b5gca2f2h06cxny56w0bbb8a9z86p-patch-2.7.5.drv
/home/pi/code/guix/test-tmp/store/s09f7y3rjss13n5pm4fxa4k248ydrlr4-glibc-2.25.tar.xz.drv
/home/pi/code/guix/test-tmp/store/svkck37nskq4nmci56x5bcv7vijalbms-grep-3.0.drv
/home/pi/code/guix/test-tmp/store/vmfh0lskxhaa2pidf5m68gk4dafr9jpn-sed-4.4.drv
/home/pi/code/guix/test-tmp/store/vrnzy86r2f1si799d0r9ncbf4hbj0jzh-gcc-5.4.0.drv
/home/pi/code/guix/test-tmp/store/z9if03n7l35xqb1py8cpv8db95skvc2a-file-5.30.drv
/home/pi/code/guix/test-tmp/store/8f6wgng3fkms2f06wm331vg3fpb1q5l3-glibc-2.25.drv
/home/pi/code/guix/test-tmp/store/mmkj2kdf4bgsmim177nrv8hdb0agn011-linux-libre-headers-4.4.47.drv
+ guix package --bootstrap -i guile-bootstrap:out -p t-profile-25045 -n
accepted connection from pid 25138, user pi
guix package: warning: Consider running 'guix pull' followed by
'guix package -u' to get up-to-date packages and security updates.
The following package would be upgraded:
guile-bootstrap 2.0 → 2.0 /home/pi/code/guix/test-tmp/store/wyfs9qa947kj0y8x0ln59jpsk22bascv-guile-bootstrap-2.0
+ guix package --bootstrap -i guile-bootstrap:does-not-exist -p t-profile-25045 -n
accepted connection from pid 25142, user pi
guix package: error: package `guile-bootstrap-2.0' lacks output `does-not-exist'
+ true
+ guix package --bootstrap -i guile-bootstrap:does-not-exist -p t-profile-25045
accepted connection from pid 25146, user pi
guix package: error: package `guile-bootstrap-2.0' lacks output `does-not-exist'
+ true
+ guix package -p t-profile-25045 -A 'gui.*e'
+ grep guile
guile 2.0.14 out,debug gnu/packages/guile.scm:146:2
guile 2.2.2 out,debug gnu/packages/guile.scm:225:2
guile 2.2.3 out,debug gnu/packages/guile.scm:259:2
guile 1.8.8 out gnu/packages/guile.scm:86:2
guile-8sync 0.4.2 out gnu/packages/guile.scm:1820:2
guile-aspell 0.4 out gnu/packages/guile.scm:1706:2
guile-bash 0.1.6-0.1eabc56 out gnu/packages/guile.scm:1750:4
guile-bootstrap 2.0 out gnu/packages/bootstrap.scm:287:3
guile-bytestructures 1.0.1 out gnu/packages/guile.scm:1676:2
guile-cairo 1.4.1 out gnu/packages/gtk.scm:747:2
guile-charting 0.2.0 out gnu/packages/plotutils.scm:84:2
guile-colorized 0.1 out gnu/packages/guile.scm:2001:2
guile-commonmark 0.1 out gnu/packages/guile.scm:1635:2
guile-config 0.1.1 out gnu/packages/guile.scm:1240:2
guile-daemon 0.1.2 out gnu/packages/guile.scm:1610:2
guile-dbd-sqlite3 2.1.6 out gnu/packages/guile.scm:1505:2
guile-dbi 2.1.6 out gnu/packages/guile.scm:1467:2
guile-dsv 0.2.1 out gnu/packages/guile.scm:1532:2
guile-emacs 20150512.41120e0 out gnu/packages/emacs.scm:274:2
guile-fibers 1.0.0 out gnu/packages/guile.scm:1853:2
guile-for-guile-emacs 20150510.d8d9a8d out,debug gnu/packages/guile.scm:307:2
guile-gdbm-ffi 20120209.fa1d5b6 out gnu/packages/guile.scm:1048:2
guile-git 0.0-4.951a32c out gnu/packages/guile.scm:1887:4
guile-gnome 2.16.5 out,debug gnu/packages/gtk.scm:912:3
guile-gnunet 0.0.383eac2 out gnu/packages/gnunet.scm:311:4
guile-ics 0.1.1 out gnu/packages/guile.scm:675:2
guile-irregex 0.9.6 out gnu/packages/guile.scm:960:2
guile-json 0.6.0 out gnu/packages/guile.scm:762:2
guile-lib 0.2.5.1 out gnu/packages/guile.scm:715:2
guile-libctl 3.2.2 out gnu/packages/engineering.scm:936:2
guile-miniadapton 0-1.1b5749422 out gnu/packages/guile.scm:894:4
guile-minikanren 20150424.e844d85 out gnu/packages/guile.scm:806:2
guile-ncurses 2.2 out gnu/packages/guile.scm:540:2
guile-ncurses-with-gpm 2.2 out gnu/packages/guile.scm:581:2
guile-opengl 0.1.0 out gnu/packages/gl.scm:460:2
guile-present 0.3.0 out gnu/packages/gtk.scm:863:2
guile-reader 0.6.2 out gnu/packages/guile.scm:504:2
guile-redis 0.1.0 out gnu/packages/guile.scm:1267:2
guile-rsvg 2.18.1-0.05c6a2f out gnu/packages/gtk.scm:821:4
guile-sdl 0.5.2 out gnu/packages/sdl.scm:401:2
guile-sdl2 0.2.0 out gnu/packages/sdl.scm:481:2
guile-sjson 0.2.1 out gnu/packages/guile.scm:1972:2
guile-sly 0.1 out gnu/packages/guile.scm:1376:2
guile-sqlite3 0.0-4.10c13a7 out gnu/packages/guile.scm:1135:4
guile-ssh 0.11.2 out,debug gnu/packages/ssh.scm:223:2
guile-static-stripped 2.2.2 out gnu/packages/make-bootstrap.scm:551:2
guile-static-stripped-tarball 2.2.2 out gnu/packages/make-bootstrap.scm:596:2
guile-syntax-highlight 0.0.0.a047675 out gnu/packages/guile.scm:1938:4
guile-wisp 0.9.8 out gnu/packages/guile.scm:1303:2
guile-wm 1.0-1.f3c7b3b out gnu/packages/guile-wm.scm:75:4
guile-xcb 1.3-1.db7d5a3 out gnu/packages/guile-wm.scm:37:4
guile-xosd 0.2.1 out gnu/packages/guile.scm:1581:2
guile2.0-bytestructures 1.0.1 out guix/packages.scm:804:11
guile2.0-commonmark 0.1 out guix/packages.scm:804:11
guile2.0-gdbm-ffi 20120209.fa1d5b6 out guix/packages.scm:804:11
guile2.0-git 0.0-4.951a32c out guix/packages.scm:804:11
guile2.0-gnutls 3.5.13 out,debug,doc gnu/packages/tls.scm:238:2
guile2.0-guix 0.14.0-8.bc880f9 out gnu/packages/package-management.scm:306:2
guile2.0-haunt 0.2.1 out guix/packages.scm:804:11
guile2.0-json 0.6.0 out guix/packages.scm:804:11
guile2.0-lib 0.2.5.1 out guix/packages.scm:804:11
guile2.0-reader 0.6.2 out guix/packages.scm:804:11
guile2.0-ssh 0.11.2 out,debug gnu/packages/ssh.scm:283:2
guile2.2-irregex 0.9.6 out guix/packages.scm:804:11
guile2.2-minikanren 20150424.e844d85 out guix/packages.scm:804:11
guile2.2-redis 0.1.0 out guix/packages.scm:804:11
zile-on-guile 2.4.14-0.fd09781 out gnu/packages/zile.scm:83:4
+ guix package --show=guile
+ grep '^name: guile'
name: guile
name: guile
name: guile
name: guile
+ guix package --show=texlive
name: texlive
version: 2017
outputs: out
systems: x86_64-linux i686-linux armhf-linux aarch64-linux mips64el-linux
dependencies: bash-4.4.12 texlive-bin-20170524 texlive-texmf-2017
location: gnu/packages/tex.scm:3859:2
homepage: https://www.tug.org/texlive/
license: FSF-free
synopsis: TeX Live, a package of the TeX typesetting system
description: TeX Live provides a comprehensive TeX document production system.
+ It includes all the major TeX-related programs, macro packages, and fonts that
+ are free software, including support for many languages around the world.
+
+ This package contains the complete TeX Live distribution.
+ LC_MESSAGES=C
+ export LC_MESSAGES
++ guix package -s 'An example GNU package'
++ grep '^name:'
Backtrace:
In ice-9/boot-9.scm:
713:2 19 (call-with-prompt _ _ #<procedure default-prompt-handle…>)
In ice-9/eval.scm:
619:8 18 (_ #(#(#<directory (guile-user) 18c7910>)))
In guix/ui.scm:
1489:12 17 (run-guix-command _ . _)
In ice-9/boot-9.scm:
837:9 16 (catch _ _ #<procedure 765acb50 at guix/ui.scm:542:2 (…> …)
837:9 15 (catch _ _ #<procedure 765acb60 at guix/ui.scm:648:6 (…> …)
In guix/scripts/package.scm:
912:10 14 (_)
770:9 13 (process-query _)
In ice-9/boot-9.scm:
837:9 12 (catch _ _ #<procedure 746ad928 at guix/scripts/packag…> …)
In guix/scripts/package.scm:
772:24 11 (_)
249:17 10 (find-packages-by-description _)
In guix/discovery.scm:
137:3 9 (fold-module-public-variables _ _ _)
In guix/combinators.scm:
45:26 8 (fold2 #<procedure 25cfd00 at guix/discovery.scm:137:1…> …)
45:26 7 (fold2 #<procedure 3107370 at guix/discovery.scm:138:1…> …)
In guix/discovery.scm:
140:33 6 (_ #<package ifdtool@4.7 gnu/packages/flashing-tools.s…> …)
In guix/scripts/package.scm:
250:34 5 (_ #<package ifdtool@4.7 gnu/packages/flashing-tools.s…> …)
In srfi/srfi-1.scm:
466:18 4 (fold #<procedure 2880670 at guix/ui.scm:1158:8 (metri…> …)
In guix/ui.scm:
1161:13 3 (_ _ 0)
1040:23 2 (texi->plain-text _)
In texinfo.scm:
1131:22 1 (parse _)
966:36 0 (loop #<input: string 311b118> (*fragment*) #<procedur…> …)
texinfo.scm:966:36: In procedure loop:
texinfo.scm:966:36: Throw to key `parser-error' with args `(#f "Unknown command" ifdtool)'.
+ test '' = 'name: hello'
+ rm -f t-profile-25045 t-profile-25045-1-link t-guix-package-file-25045
+ rm -rf t-guix-package-25045 t-home-25045
FAIL tests/guix-package.sh (exit status: 1)
^ permalink raw reply [flat|nested] 6+ messages in thread