====================================== GNU Guix 1.0.1: ./test-suite.log ====================================== # TOTAL: 901 # PASS: 876 # SKIP: 24 # 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/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/upstream ==================== test-name: coalesce-sources same version location: /home/mwette/proj/guix/guix-1.0.1/tests/upstream.scm:30 source: + (test-equal + "coalesce-sources same version" + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz" + "ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig" + "ftp://example.org/foo-1.tar.gz.sig")))) + (coalesce-sources + (list (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.gz")) + (signature-urls + '("ftp://example.org/foo-1.tar.gz.sig"))) + (upstream-source + (package "foo") + (version "1") + (urls '("ftp://example.org/foo-1.tar.xz")) + (signature-urls + '("ftp://example.org/foo-1.tar.xz.sig")))))) result: SKIP random seed for tests: 1561202458 SKIP: tests/snix ================ test-name: factorize-uri location: /home/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/gexp ================ test-name: no refs location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:89 source: + (test-equal + "no refs" + '(display "hello!") + (let ((exp (gexp (display "hello!")))) + (and (gexp? exp) + (null? (gexp-inputs exp)) + (gexp->sexp* exp)))) expected-value: (display "hello!") actual-value: (display "hello!") result: PASS test-name: unquote location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:96 source: + (test-equal + "unquote" + '(display `(foo ,(+ 2 3))) + (let ((exp (gexp (display `(foo ,(+ 2 3)))))) + (and (gexp? exp) + (null? (gexp-inputs exp)) + (gexp->sexp* exp)))) expected-value: (display (quasiquote (foo (unquote (+ 2 3))))) actual-value: (display (quasiquote (foo (unquote (+ 2 3))))) result: PASS test-name: one input package location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:103 source: + (test-assert + "one input package" + (let ((exp (gexp (display (ungexp coreutils))))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((p "out")) (eq? p coreutils))) + (equal? + `(display + ,(derivation->output-path + (package-derivation %store coreutils))) + (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: one input package, dotted list location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:113 source: + (test-assert + "one input package, dotted list" + (let ((exp (gexp (coreutils ungexp coreutils)))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((p "out")) (eq? p coreutils))) + (equal? + `(coreutils + unquote + (derivation->output-path + (package-derivation %store coreutils))) + (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: one input origin location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:123 source: + (test-assert + "one input origin" + (let ((exp (gexp (display (ungexp (package-source coreutils)))))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((o "out")) (eq? o (package-source coreutils)))) + (equal? + `(display + ,(derivation->output-path + (package-source-derivation + %store + (package-source coreutils)))) + (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: one local file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:134 source: + (test-assert + "one local file" + (let* ((file (search-path %load-path "guix.scm")) + (local (local-file file)) + (exp (gexp (display (ungexp local)))) + (intd (add-to-store + %store + (basename file) + #f + "sha256" + file))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((x "out")) (eq? x local))) + (equal? `(display ,intd) (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: one local file, symlink location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:146 source: + (test-assert + "one local file, symlink" + (let ((file (search-path %load-path "guix.scm")) + (link (tmpnam))) + (dynamic-wind + (const #t) + (lambda () + (symlink (canonicalize-path file) link) + (let* ((local (local-file link "my-file" #:recursive? #f)) + (exp (gexp (display (ungexp local)))) + (intd (add-to-store %store "my-file" #f "sha256" file))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((x "out")) (eq? x local))) + (equal? `(display ,intd) (gexp->sexp* exp))))) + (lambda () + (false-if-exception (delete-file link)))))) actual-value: #t result: PASS test-name: local-file, relative file name location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:165 source: + (test-equal + "local-file, relative file name" + (canonicalize-path + (search-path %load-path "guix/base32.scm")) + (let ((directory + (dirname + (search-path + %load-path + "guix/build-system/gnu.scm")))) + (with-directory-excursion + directory + (let ((file (local-file "../guix/base32.scm"))) + (local-file-absolute-file-name file))))) expected-value: "/home/mwette/proj/guix/guix-1.0.1/guix/base32.scm" actual-value: "/home/mwette/proj/guix/guix-1.0.1/guix/base32.scm" result: PASS test-name: local-file, #:select? location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:173 source: + (test-assert + "local-file, #:select?" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((select? + -> + (lambda (file stat) + (member + (basename file) + '("guix.scm" "tests" "gexp.scm")))) + (file -> + (local-file + ".." + "directory" + #:recursive? + #t + #:select? + select?)) + (dir (lower-object file))) + (return + (and (store-path? dir) + (equal? + (scandir dir) + '("." ".." "guix.scm" "tests")) + (equal? + (scandir (string-append dir "/tests")) + '("." ".." "gexp.scm"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: one plain file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:188 source: + (test-assert + "one plain file" + (let* ((file (plain-file "hi" "Hello, world!")) + (exp (gexp (display (ungexp file)))) + (expected + (add-text-to-store %store "hi" "Hello, world!"))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((x "out")) (eq? x file))) + (equal? `(display ,expected) (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: same input twice location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:198 source: + (test-assert + "same input twice" + (let ((exp (gexp (begin + (display (ungexp coreutils)) + (display (ungexp coreutils)))))) + (and (gexp? exp) + (match (gexp-inputs exp) + (((p "out")) (eq? p coreutils))) + (let ((e `(display + ,(derivation->output-path + (package-derivation %store coreutils))))) + (equal? `(begin ,e ,e) (gexp->sexp* exp)))))) actual-value: #t result: PASS test-name: two input packages, one derivation, one file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:210 source: + (test-assert + "two input packages, one derivation, one file" + (let* ((drv (build-expression->derivation + %store + "foo" + 'bar + #:guile-for-build + (package-derivation %store %bootstrap-guile))) + (txt (add-text-to-store %store "foo" "Hello, world!")) + (exp (gexp (begin + (display (ungexp coreutils)) + (display (ungexp %bootstrap-guile)) + (display (ungexp drv)) + (display (ungexp txt)))))) + (define (match-input thing) + (match-lambda + ((drv-or-pkg _ ...) (eq? thing drv-or-pkg)))) + (and (gexp? exp) + (= 4 (length (gexp-inputs exp))) + (every (lambda (input) + (find (match-input input) (gexp-inputs exp))) + (list drv coreutils %bootstrap-guile txt)) + (let ((e0 `(display + ,(derivation->output-path + (package-derivation %store coreutils)))) + (e1 `(display + ,(derivation->output-path + (package-derivation %store %bootstrap-guile)))) + (e2 `(display ,(derivation->output-path drv))) + (e3 `(display ,txt))) + (equal? + `(begin ,e0 ,e1 ,e2 ,e3) + (gexp->sexp* exp)))))) actual-value: #t result: PASS test-name: file-append location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:238 source: + (test-assert + "file-append" + (let* ((drv (package-derivation %store %bootstrap-guile)) + (fa (file-append %bootstrap-guile "/bin/guile")) + (exp (gexp (here we go (ungexp fa))))) + (and (match (gexp->sexp* exp) + (('here 'we 'go (? string? result)) + (string=? + result + (string-append + (derivation->output-path drv) + "/bin/guile")))) + (match (gexp-inputs exp) + (((thing "out")) (eq? thing fa)))))) actual-value: #t result: PASS test-name: file-append, output location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:251 source: + (test-assert + "file-append, output" + (let* ((drv (package-derivation %store glibc)) + (fa (file-append glibc "/lib" "/debug")) + (exp (gexp (foo (ungexp fa "debug"))))) + (and (match (gexp->sexp* exp) + (('foo (? string? result)) + (string=? + result + (string-append + (derivation->output-path drv "debug") + "/lib/debug")))) + (match (gexp-inputs exp) + (((thing "debug")) (eq? thing fa)))))) actual-value: #t result: PASS test-name: file-append, nested location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:264 source: + (test-assert + "file-append, nested" + (let* ((drv (package-derivation %store glibc)) + (dir (file-append glibc "/bin")) + (slash (file-append dir "/")) + (file (file-append slash "getent")) + (exp (gexp (foo (ungexp file))))) + (and (match (gexp->sexp* exp) + (('foo (? string? result)) + (string=? + result + (string-append + (derivation->output-path drv) + "/bin/getent")))) + (match (gexp-inputs exp) + (((thing "out")) (eq? thing file)))))) actual-value: #t result: PASS test-name: ungexp + ungexp-native location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:279 source: + (test-assert + "ungexp + ungexp-native" + (let* ((exp (gexp (list (ungexp-native %bootstrap-guile) + (ungexp coreutils) + (ungexp-native glibc) + (ungexp binutils)))) + (target "mips64el-linux") + (guile (derivation->output-path + (package-derivation %store %bootstrap-guile))) + (cu (derivation->output-path + (package-cross-derivation + %store + coreutils + target))) + (libc (derivation->output-path + (package-derivation %store glibc))) + (bu (derivation->output-path + (package-cross-derivation %store binutils target)))) + (and (lset= equal? + `((,%bootstrap-guile "out") (,glibc "out")) + (gexp-native-inputs exp)) + (lset= equal? + `((,coreutils "out") (,binutils "out")) + (gexp-inputs exp)) + (equal? + `(list ,guile ,cu ,libc ,bu) + (gexp->sexp* exp target))))) actual-value: #t result: PASS test-name: ungexp + ungexp-native, nested location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:302 source: + (test-equal + "ungexp + ungexp-native, nested" + (list `((,%bootstrap-guile "out")) + '<> + `((,coreutils "out"))) + (let* ((exp (gexp (list (ungexp-native (gexp (ungexp coreutils))) + (ungexp %bootstrap-guile))))) + (list (gexp-inputs exp) + '<> + (gexp-native-inputs exp)))) expected-value: (((# "out")) <> ((# "out"))) actual-value: (((# "out")) <> ((# "out"))) result: PASS test-name: ungexp + ungexp-native, nested, special mixture location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:308 source: + (test-equal + "ungexp + ungexp-native, nested, special mixture" + `(() <> ((,coreutils "out"))) + (let* ((foo (gexp (foo (ungexp-native coreutils)))) + (exp (gexp (bar (ungexp foo))))) + (list (gexp-inputs exp) + '<> + (gexp-native-inputs exp)))) expected-value: (() <> ((# "out"))) actual-value: (() <> ((# "out"))) result: PASS test-name: input list location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:316 source: + (test-assert + "input list" + (let ((exp (gexp (display + '(ungexp (list %bootstrap-guile coreutils))))) + (guile (derivation->output-path + (package-derivation %store %bootstrap-guile))) + (cu (derivation->output-path + (package-derivation %store coreutils)))) + (and (lset= equal? + `((,%bootstrap-guile "out") (,coreutils "out")) + (gexp-inputs exp)) + (equal? + `(display '(,guile ,cu)) + (gexp->sexp* exp))))) actual-value: #t result: PASS test-name: input list + ungexp-native location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:329 source: + (test-assert + "input list + ungexp-native" + (let* ((target "mips64el-linux") + (exp (gexp (display + (cons '(ungexp-native + (list %bootstrap-guile coreutils)) + '(ungexp (list glibc binutils)))))) + (guile (derivation->output-path + (package-derivation %store %bootstrap-guile))) + (cu (derivation->output-path + (package-derivation %store coreutils))) + (xlibc (derivation->output-path + (package-cross-derivation %store glibc target))) + (xbu (derivation->output-path + (package-cross-derivation %store binutils target)))) + (and (lset= equal? + `((,%bootstrap-guile "out") (,coreutils "out")) + (gexp-native-inputs exp)) + (lset= equal? + `((,glibc "out") (,binutils "out")) + (gexp-inputs exp)) + (equal? + `(display (cons '(,guile ,cu) '(,xlibc ,xbu))) + (gexp->sexp* exp target))))) actual-value: #t result: PASS test-name: input list splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:351 source: + (test-assert + "input list splicing" + (let* ((inputs + (list (gexp-input glibc "debug") + %bootstrap-guile)) + (outputs + (list (derivation->output-path + (package-derivation %store glibc) + "debug") + (derivation->output-path + (package-derivation %store %bootstrap-guile)))) + (exp (gexp (list (ungexp-splicing (cons (+ 2 3) inputs)))))) + (and (lset= equal? + `((,glibc "debug") (,%bootstrap-guile "out")) + (gexp-inputs exp)) + (equal? + (gexp->sexp* exp) + `(list ,@(cons 5 outputs)))))) actual-value: #t result: PASS test-name: input list splicing + ungexp-native-splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:365 source: + (test-assert + "input list splicing + ungexp-native-splicing" + (let* ((inputs + (list (gexp-input glibc "debug" #:native? #t) + %bootstrap-guile)) + (exp (gexp (list (ungexp-native-splicing (cons (+ 2 3) inputs)))))) + (and (lset= equal? + `((,glibc "debug") (,%bootstrap-guile "out")) + (gexp-native-inputs exp)) + (null? (gexp-inputs exp)) + (equal? + (gexp->sexp* exp) + (gexp->sexp* exp "mips64el-linux"))))) actual-value: #t result: PASS test-name: gexp list splicing + ungexp-splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:376 source: + (test-assert + "gexp list splicing + ungexp-splicing" + (let* ((inner (gexp (ungexp-native glibc))) + (exp (gexp (list (ungexp-splicing (list inner)))))) + (and (equal? + `((,glibc "out")) + (gexp-native-inputs exp)) + (null? (gexp-inputs exp)) + (equal? + (gexp->sexp* exp) + (gexp->sexp* exp "mips64el-linux"))))) actual-value: #t result: PASS test-name: output list location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:384 source: + (test-equal + "output list" + 2 + (let ((exp (gexp (begin + (mkdir (ungexp output)) + (mkdir (ungexp output "bar")))))) + (length (gexp-outputs exp)))) expected-value: 2 actual-value: 2 result: PASS test-name: output list, combined gexps location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:390 source: + (test-assert + "output list, combined gexps" + (let* ((exp0 (gexp (mkdir (ungexp output)))) + (exp1 (gexp (mkdir (ungexp output "foo")))) + (exp2 (gexp (begin + (display "hi!") + (ungexp exp0) + (ungexp exp1))))) + (and (lset= equal? + (append (gexp-outputs exp0) (gexp-outputs exp1)) + (gexp-outputs exp2)) + (= 2 (length (gexp-outputs exp2)))))) actual-value: #t result: PASS test-name: output list, combined gexps, duplicate output location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:399 source: + (test-equal + "output list, combined gexps, duplicate output" + 1 + (let* ((exp0 (gexp (mkdir (ungexp output)))) + (exp1 (gexp (begin (mkdir (ungexp output)) (ungexp exp0)))) + (exp2 (gexp (begin (mkdir (ungexp output)) (ungexp exp1))))) + (length (gexp-outputs exp2)))) expected-value: 1 actual-value: 1 result: PASS test-name: output list + ungexp-splicing list, combined gexps location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:406 source: + (test-assert + "output list + ungexp-splicing list, combined gexps" + (let* ((exp0 (gexp (mkdir (ungexp output)))) + (exp1 (gexp (mkdir (ungexp output "foo")))) + (exp2 (gexp (begin + (display "hi!") + (ungexp-splicing (list exp0 exp1)))))) + (and (lset= equal? + (append (gexp-outputs exp0) (gexp-outputs exp1)) + (gexp-outputs exp2)) + (= 2 (length (gexp-outputs exp2)))))) actual-value: #t result: PASS test-name: gexp->file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:416 source: + (test-assert + "gexp->file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((exp -> + (gexp (display (ungexp %bootstrap-guile)))) + (guile (package-file %bootstrap-guile)) + (sexp (gexp->sexp exp)) + (drv (gexp->file "foo" exp)) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv))) + (refs (references* out))) + (return + (and (equal? sexp (call-with-input-file out read)) + (equal? (list guile) refs)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) random seed for tests: 1561201887 @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/vq2x31ydyhpdlin4yzyp7v599a3jqnsb-foo.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/vq//2x31ydyhpdlin4yzyp7v599a3jqnsb-foo.drv.bz2 16212 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/vq2x31ydyhpdlin4yzyp7v599a3jqnsb-foo.drv - actual-value: #t result: PASS test-name: gexp->file + file-append location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:427 source: + (test-assert + "gexp->file + file-append" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((exp -> + (gexp (ungexp + (file-append %bootstrap-guile "/bin/guile")))) + (guile (package-file %bootstrap-guile)) + (drv (gexp->file "foo" exp)) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv))) + (refs (references* out))) + (return + (and (equal? + (string-append guile "/bin/guile") + (call-with-input-file out read)) + (equal? (list guile) refs)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/k46p97csp0gsc2b64151qiw588wn706v-foo.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/k4//6p97csp0gsc2b64151qiw588wn706v-foo.drv.bz2 16214 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/k46p97csp0gsc2b64151qiw588wn706v-foo.drv - actual-value: #t result: PASS test-name: gexp->file + #:splice? location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:439 source: + (test-assert + "gexp->file + #:splice?" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((exp -> + (list (gexp (define foo 'bar)) + (gexp (define guile + (ungexp %bootstrap-guile))))) + (guile (package-file %bootstrap-guile)) + (drv (gexp->file "splice" exp #:splice? #t)) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv))) + (refs (references* out))) + (pk 'splice out) + (return + (and (equal? + `((define foo 'bar) + (define guile ,guile) + ,(call-with-input-string "" read)) + (call-with-input-file + out + (lambda (port) + (list (read port) (read port) (read port))))) + (equal? (list guile) refs)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/fcjkpg9x5h571lck1nv7vn8sdxs01wlc-splice.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/fc//jkpg9x5h571lck1nv7vn8sdxs01wlc-splice.drv.bz2 16216 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/fcjkpg9x5h571lck1nv7vn8sdxs01wlc-splice.drv - ;;; (splice "/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/wbdmhbivp22g9jszbjilb4fqzy7qzwwb-splice") actual-value: #t result: PASS test-name: gexp->derivation location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:457 source: + (test-assert + "gexp->derivation" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((file (text-file "foo" "Hello, world!")) + (exp -> + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink + (string-append + (ungexp %bootstrap-guile) + "/bin/guile") + "foo") + (symlink + (ungexp file) + (ungexp output "2nd"))))) + (drv (gexp->derivation "foo" exp)) + (out -> (derivation->output-path drv)) + (out2 -> (derivation->output-path drv "2nd")) + (done (built-derivations (list drv))) + (refs (references* out)) + (refs2 (references* out2)) + (guile (package-file %bootstrap-guile "bin/guile"))) + (return + (and (string=? + (readlink (string-append out "/foo")) + guile) + (string=? (readlink out2) file) + (equal? refs (list (dirname (dirname guile)))) + (equal? refs2 (list file)) + (null? (derivation-properties drv))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/z00ipd7i5kn5ay8asmzggklgw9siv41h-foo.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/z0//0ipd7i5kn5ay8asmzggklgw9siv41h-foo.drv.bz2 16218 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/z00ipd7i5kn5ay8asmzggklgw9siv41h-foo.drv - actual-value: #t result: PASS test-name: gexp->derivation properties location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:482 source: + (test-assert + "gexp->derivation properties" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet %store-monad + ((drv (gexp->derivation + "foo" + (gexp (mkdir (ungexp output))) + #:properties + '((type . test))))) + (return + (equal? + '((type . test)) + (derivation-properties drv)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation vs. grafts location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:489 source: + (test-assert + "gexp->derivation vs. grafts" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((graft? (set-grafting #f)) + (p0 -> + (dummy-package + "dummy" + (arguments '(#:implicit-inputs? #f)))) + (r -> (package (inherit p0) (name "DuMMY"))) + (p1 -> (package (inherit p0) (replacement r))) + (exp0 -> + (gexp (frob (ungexp p0) (ungexp output)))) + (exp1 -> + (gexp (frob (ungexp p1) (ungexp output)))) + (void (set-guile-for-build %bootstrap-guile)) + (drv0 (gexp->derivation "t" exp0 #:graft? #t)) + (drv1 (gexp->derivation "t" exp1 #:graft? #t)) + (drv1* (gexp->derivation "t" exp1 #:graft? #f)) + (_ (set-grafting graft?))) + (return + (and (not (string=? + (derivation->output-path drv0) + (derivation->output-path drv1))) + (string=? + (derivation->output-path drv0) + (derivation->output-path drv1*))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation, composed gexps location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:508 source: + (test-assert + "gexp->derivation, composed gexps" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((exp0 -> + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output))))) + (exp1 -> + (gexp (symlink + (string-append + (ungexp %bootstrap-guile) + "/bin/guile") + "foo"))) + (exp -> + (gexp (begin (ungexp exp0) (ungexp exp1)))) + (drv (gexp->derivation "foo" exp)) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv))) + (guile (package-file %bootstrap-guile "bin/guile"))) + (return + (string=? + (readlink (string-append out "/foo")) + guile))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/773ya8b752pcl0qkbmggfpfjwqr262vz-foo.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/77//3ya8b752pcl0qkbmggfpfjwqr262vz-foo.drv.bz2 16222 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/773ya8b752pcl0qkbmggfpfjwqr262vz-foo.drv - actual-value: #t result: PASS test-name: gexp->derivation, default system location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:524 source: + (test-assert + "gexp->derivation, default system" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let ((system (%current-system)) + (mdrv (parameterize + ((%current-system "foobar64-linux")) + (gexp->derivation + "foo" + (gexp (mkdir (ungexp output))))))) + (mlet %store-monad + ((drv mdrv)) + (return + (string=? system (derivation-system drv))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation, local-file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:535 source: + (test-assert + "gexp->derivation, local-file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((file -> (search-path %load-path "guix.scm")) + (intd (interned-file file #:recursive? #f)) + (local -> (local-file file)) + (exp -> + (gexp (begin + (stat (ungexp local)) + (symlink (ungexp local) (ungexp output))))) + (drv (gexp->derivation "local-file" exp))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (string=? + (readlink (derivation->output-path drv)) + intd)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/j9irpisqx177wpvnzv25ppxrkmn7xw5w-local-file.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/j9//irpisqx177wpvnzv25ppxrkmn7xw5w-local-file.drv.bz2 16225 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/j9irpisqx177wpvnzv25ppxrkmn7xw5w-local-file.drv - actual-value: #t result: PASS test-name: gexp->derivation, cross-compilation location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:549 source: + (test-assert + "gexp->derivation, cross-compilation" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((target -> "mips64el-linux") + (exp -> + (gexp (list (ungexp coreutils) (ungexp output)))) + (xdrv (gexp->derivation "foo" exp #:target target)) + (refs (references* (derivation-file-name xdrv))) + (xcu (package->cross-derivation coreutils target)) + (cu (package->derivation coreutils))) + (return + (and (member (derivation-file-name xcu) refs) + (not (member (derivation-file-name cu) refs))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation, ungexp-native location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:563 source: + (test-assert + "gexp->derivation, ungexp-native" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((target -> "mips64el-linux") + (exp -> + (gexp (list (ungexp-native coreutils) + (ungexp output)))) + (xdrv (gexp->derivation "foo" exp #:target target)) + (drv (gexp->derivation "foo" exp))) + (return + (string=? + (derivation-file-name drv) + (derivation-file-name xdrv)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation, ungexp + ungexp-native location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:573 source: + (test-assert + "gexp->derivation, ungexp + ungexp-native" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((target -> "mips64el-linux") + (exp -> + (gexp (list (ungexp-native coreutils) + (ungexp glibc) + (ungexp output)))) + (xdrv (gexp->derivation "foo" exp #:target target)) + (refs (references* (derivation-file-name xdrv))) + (xglibc (package->cross-derivation glibc target)) + (cu (package->derivation coreutils))) + (return + (and (member (derivation-file-name cu) refs) + (member (derivation-file-name xglibc) refs)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: ("/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/xyc9mfkycm1k4h6hlkwwxc7pk63fpir1-glibc-2.28.drv") result: PASS test-name: gexp->derivation, ungexp-native + composed gexps location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:587 source: + (test-assert + "gexp->derivation, ungexp-native + composed gexps" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((target -> "mips64el-linux") + (exp0 -> (gexp (list 1 2 (ungexp coreutils)))) + (exp -> (gexp (list 0 (ungexp-native exp0)))) + (xdrv (gexp->derivation "foo" exp #:target target)) + (drv (gexp->derivation "foo" exp))) + (return + (string=? + (derivation-file-name drv) + (derivation-file-name xdrv)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation, store copy location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:598 source: + (test-assert + "gexp->derivation, store copy" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let ((build-one + (gexp (call-with-output-file + (ungexp output) + (lambda (port) + (display "This is the one." port))))) + (build-two + (lambda (one) + (gexp (begin + (mkdir (ungexp output)) + (symlink + (ungexp one) + (string-append (ungexp output) "/one")) + (call-with-output-file + (string-append (ungexp output) "/two") + (lambda (port) + (display + "This is the second one." + port))))))) + (build-drv + (gexp (begin + (use-modules (guix build store-copy)) + (mkdir (ungexp output)) + (populate-store '("graph") (ungexp output)))))) + (mlet* %store-monad + ((one (gexp->derivation "one" build-one)) + (two (gexp->derivation "two" (build-two one))) + (drv (gexp->derivation + "store-copy" + build-drv + #:references-graphs + `(("graph" ,two)) + #:modules + '((guix build store-copy) + (guix progress) + (guix records) + (guix sets) + (guix build utils)))) + (ok? (built-derivations (list drv))) + (out -> (derivation->output-path drv))) + (let ((one (derivation->output-path one)) + (two (derivation->output-path two))) + (return + (and ok? + (file-exists? (string-append out "/" one)) + (file-exists? (string-append out "/" two)) + (file-exists? (string-append out "/" two "/two")) + (string=? + (readlink (string-append out "/" two "/one")) + one)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/0sf65akkg0fw95x7wfxhw5r9ynlka7py-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/0s//f65akkg0fw95x7wfxhw5r9ynlka7py-module-import-compiled.drv.bz2 16231 [ 1/10] Loading './guix/build/store-copy.scm'... [ 2/10] Loading './guix/build/utils.scm'... [ 3/10] Loading './guix/progress.scm'... [ 4/10] Loading './guix/records.scm'... [ 5/10] Loading './guix/sets.scm'... [ 6/10] Compiling './guix/build/store-copy.scm'... [ 7/10] Compiling './guix/build/utils.scm'... [ 8/10] Compiling './guix/progress.scm'... [ 9/10] Compiling './guix/records.scm'... [10/10] Compiling './guix/sets.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/0sf65akkg0fw95x7wfxhw5r9ynlka7py-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/7ka8xsca896hmgn7860pqfy83dldc41d-one.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/7k//a8xsca896hmgn7860pqfy83dldc41d-one.drv.bz2 16232 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/7ka8xsca896hmgn7860pqfy83dldc41d-one.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/s575czjfc7msp89splmm90mcfckcgx0i-two.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/s5//75czjfc7msp89splmm90mcfckcgx0i-two.drv.bz2 16233 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/s575czjfc7msp89splmm90mcfckcgx0i-two.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/7phxkmc2ahjhpar5bmc6nffzz7f1wh4x-store-copy.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/7p//hxkmc2ahjhpar5bmc6nffzz7f1wh4x-store-copy.drv.bz2 16234 copying 2 store items [########################### ] copying 2 store items [######################################################] copying 2 store items @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/7phxkmc2ahjhpar5bmc6nffzz7f1wh4x-store-copy.drv - actual-value: #t result: PASS test-name: imported-files location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:636 source: + (test-assert + "imported-files" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((files -> + `(("x" + unquote + (search-path %load-path "ice-9/q.scm")) + ("a/b/c" + unquote + (search-path %load-path "guix/derivations.scm")) + ("p/q" + unquote + (search-path %load-path "guix.scm")) + ("p/z" + unquote + (search-path %load-path "guix/store.scm")))) + (dir (imported-files files))) + (mbegin + %store-monad + (return + (every (match-lambda + ((path . source) + (equal? + (call-with-input-file + (string-append dir "/" path) + get-bytevector-all) + (call-with-input-file + source + get-bytevector-all)))) + files)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: imported-files with file-like objects location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:654 source: + (test-assert + "imported-files with file-like objects" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((plain -> (plain-file "foo" "bar!")) + (q-scm -> (search-path %load-path "ice-9/q.scm")) + (files -> + `(("a/b/c" unquote q-scm) ("p/q" unquote plain))) + (drv (imported-files files))) + (define (file=? file1 file2) + (= (stat:ino (stat file1)) + (stat:ino (stat file2)))) + (mbegin + %store-monad + (built-derivations (list (pk 'drv drv))) + (mlet %store-monad + ((dir -> (derivation->output-path drv)) + (plain* (text-file "foo" "bar!")) + (q-scm* (interned-file q-scm "c"))) + (return + (and (file=? (string-append dir "/a/b/c") q-scm*) + (file=? + (string-append dir "/p/q") + plain*)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) ;;; (drv # /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/fyjcgl73zinv4ph9wgc1m025q7df4r4x-file-import 1f9c460>) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/prsv91ckqchzd2mhnn4wymd8xx0g8alh-file-import.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/pr//sv91ckqchzd2mhnn4wymd8xx0g8alh-file-import.drv.bz2 16237 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/prsv91ckqchzd2mhnn4wymd8xx0g8alh-file-import.drv - actual-value: #t result: PASS test-name: gexp-modules & ungexp location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:674 source: + (test-equal + "gexp-modules & ungexp" + '((bar) (foo)) + ((@@ (guix gexp) gexp-modules) + (gexp (foo (ungexp + (with-imported-modules '((foo)) (gexp +))) + (ungexp-native + (with-imported-modules '((bar)) (gexp -))))))) expected-value: ((bar) (foo)) actual-value: ((bar) (foo)) result: PASS test-name: gexp-modules & ungexp-splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:680 source: + (test-equal + "gexp-modules & ungexp-splicing" + '((foo) (bar)) + ((@@ (guix gexp) gexp-modules) + (gexp (foo (ungexp-splicing + (list (with-imported-modules '((foo)) (gexp +)) + (with-imported-modules '((bar)) (gexp -)))))))) expected-value: ((foo) (bar)) actual-value: ((foo) (bar)) result: PASS test-name: gexp-modules deletes duplicates location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:686 source: + (test-assert + "gexp-modules deletes duplicates" + (let ((make-file + (lambda () + (eval '(scheme-file + "bar.scm" + (gexp (define-module (bar)))) + (current-module))))) + (define result + ((@@ (guix gexp) gexp-modules) + (with-imported-modules + `(((bar) => ,(make-file)) + ((bar) => ,(make-file)) + (foo) + (foo)) + (gexp +)))) + (match result + (((('bar) '=> (? scheme-file?)) ('foo)) #t)))) actual-value: #t result: PASS test-name: gexp-modules and literal Scheme object location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:702 source: + (test-equal + "gexp-modules and literal Scheme object" + '() + (gexp-modules #t)) expected-value: () actual-value: () result: PASS test-name: gexp->derivation #:modules location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:706 source: + (test-assert + "gexp->derivation #:modules" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((build -> + (gexp (begin + (use-modules (guix build utils)) + (mkdir-p + (string-append + (ungexp output) + "/guile/guix/nix")) + #t))) + (drv (gexp->derivation + "test-with-modules" + build + #:modules + '((guix build utils))))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((p (derivation->output-path drv)) + (s (stat (string-append p "/guile/guix/nix")))) + (return (eq? (stat:type s) 'directory))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/j2z6dm1m952x6v7719ji133iyqw5g0qp-test-with-modules.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/j2//z6dm1m952x6v7719ji133iyqw5g0qp-test-with-modules.drv.bz2 16239 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/j2z6dm1m952x6v7719ji133iyqw5g0qp-test-with-modules.drv - actual-value: #t result: PASS test-name: gexp->derivation & with-imported-modules location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:720 source: + (test-assert + "gexp->derivation & with-imported-modules" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((build -> + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (mkdir-p + (string-append + (ungexp output) + "/guile/guix/nix")) + #t)))) + (drv (gexp->derivation "test-with-modules" build))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((p (derivation->output-path drv)) + (s (stat (string-append p "/guile/guix/nix")))) + (return (eq? (stat:type s) 'directory))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: gexp->derivation & nested with-imported-modules location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:735 source: + (test-assert + "gexp->derivation & nested with-imported-modules" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((build1 + -> + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (mkdir-p + (string-append + (ungexp output) + "/guile/guix/nix")) + #t)))) + (build2 + -> + (with-imported-modules + '((guix build bournish)) + (gexp (begin + (use-modules + (guix build bournish) + (system base compile)) + (ungexp-native build1) + (call-with-output-file + (string-append (ungexp output) "/b") + (lambda (port) + (write (read-and-compile + (open-input-string "cd /foo") + #:from + %bournish-language + #:to + 'scheme) + port))))))) + (drv (gexp->derivation "test-with-modules" build2))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((p (derivation->output-path drv)) + (s (stat (string-append p "/guile/guix/nix"))) + (b (string-append p "/b"))) + (return + (and (eq? (stat:type s) 'directory) + (equal? + '(chdir "/foo") + (call-with-input-file b read))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/qh79jdbsqjiqynvask7wi9q0gd0khx8r-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/qh//79jdbsqjiqynvask7wi9q0gd0khx8r-module-import-compiled.drv.bz2 16242 [ 1/ 4] Loading './guix/build/bournish.scm'... [ 2/ 4] Loading './guix/build/utils.scm'... [ 3/ 4] Compiling './guix/build/bournish.scm'... [ 4/ 4] Compiling './guix/build/utils.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/qh79jdbsqjiqynvask7wi9q0gd0khx8r-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/r1g6s5c766cp340hri4dcv9cjr4jrbps-test-with-modules.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/r1//g6s5c766cp340hri4dcv9cjr4jrbps-test-with-modules.drv.bz2 16243 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/r1g6s5c766cp340hri4dcv9cjr4jrbps-test-with-modules.drv - actual-value: #t result: PASS test-name: gexp->derivation & with-imported-module & computed module location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:764 source: + (test-assert + "gexp->derivation & with-imported-module & computed module" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((module + -> + (scheme-file + "x" + (gexp ((define-module (foo bar) #:export (the-answer)) + (define the-answer 42))) + #:splice? + #t)) + (build -> + (with-imported-modules + `(((foo bar) => ,module) (guix build utils)) + (gexp (begin + (use-modules (guix build utils) (foo bar)) + mkdir-p + (call-with-output-file + (ungexp output) + (lambda (port) + (write the-answer port))))))) + (drv (gexp->derivation "thing" build)) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return (= 42 (call-with-input-file out read))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/40cndrlblybx91caxwdnnvfsrpwgzxxm-x.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/40//cndrlblybx91caxwdnnvfsrpwgzxxm-x.drv.bz2 16245 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/40cndrlblybx91caxwdnnvfsrpwgzxxm-x.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/azxfszqlw258axwi7q0j5g2fnrz3njcp-module-import.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/az//xfszqlw258axwi7q0j5g2fnrz3njcp-module-import.drv.bz2 16246 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/azxfszqlw258axwi7q0j5g2fnrz3njcp-module-import.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6znnd5xbr9zcawsribxl9cnv7yalpgd3-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/6z//nnd5xbr9zcawsribxl9cnv7yalpgd3-module-import-compiled.drv.bz2 16247 [ 1/ 4] Loading './foo/bar.scm'... [ 2/ 4] Loading './guix/build/utils.scm'... [ 3/ 4] Compiling './foo/bar.scm'... [ 4/ 4] Compiling './guix/build/utils.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6znnd5xbr9zcawsribxl9cnv7yalpgd3-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/15ppj8sqz9iv4nlg3pyjxx687cbl23aw-thing.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/15//ppj8sqz9iv4nlg3pyjxx687cbl23aw-thing.drv.bz2 16248 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/15ppj8sqz9iv4nlg3pyjxx687cbl23aw-thing.drv - actual-value: #t result: PASS test-name: gexp-extensions & ungexp location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:787 source: + (test-equal + "gexp-extensions & ungexp" + (list sed grep) + ((@@ (guix gexp) gexp-extensions) + (gexp (foo (ungexp (with-extensions (list grep) (gexp +))) + (ungexp-native + (with-extensions (list sed) (gexp -))))))) expected-value: (# #) actual-value: (# #) result: PASS test-name: gexp-extensions & ungexp-splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:793 source: + (test-equal + "gexp-extensions & ungexp-splicing" + (list grep sed) + ((@@ (guix gexp) gexp-extensions) + (gexp (foo (ungexp-splicing + (list (with-extensions (list grep) (gexp +)) + (with-imported-modules + '((foo)) + (with-extensions (list sed) (gexp -))))))))) expected-value: (# #) actual-value: (# #) result: PASS test-name: gexp-extensions and literal Scheme object location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:800 source: + (test-equal + "gexp-extensions and literal Scheme object" + '() + ((@@ (guix gexp) gexp-extensions) #t)) expected-value: () actual-value: () result: PASS test-name: gexp->derivation & with-extensions location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:804 source: + (test-assert + "gexp->derivation & with-extensions" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((extension -> %extension-package) + (module + -> + (scheme-file + "x" + (gexp ((define-module + (foo) + #:use-module + (hg2g) + #:export + (multiply)) + (define (multiply x) (* the-answer x)))) + #:splice? + #t)) + (build -> + (with-extensions + (list extension) + (with-imported-modules + `((guix build utils) ((foo) => ,module)) + (gexp (begin + (use-modules + (guix build utils) + (hg2g) + (foo)) + (call-with-output-file + (ungexp output) + (lambda (port) + (write (list the-answer + (multiply 2)) + port)))))))) + (drv (gexp->derivation + "thingie" + build + #:effective-version + "2.0")) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (equal? '(42 84) (call-with-input-file out read))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/pb8v57a9dfnzy12937adxb327h20iff9-extension-0.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/pb//8v57a9dfnzy12937adxb327h20iff9-extension-0.drv.bz2 16250 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/pb8v57a9dfnzy12937adxb327h20iff9-extension-0.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/yw3d4qqj9qxbh37nz32wq4c5dpc2406x-x.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/yw//3d4qqj9qxbh37nz32wq4c5dpc2406x-x.drv.bz2 16251 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/yw3d4qqj9qxbh37nz32wq4c5dpc2406x-x.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/x986wjk5ai76911qhqg12gbvhi8s5i18-module-import.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/x9//86wjk5ai76911qhqg12gbvhi8s5i18-module-import.drv.bz2 16252 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/x986wjk5ai76911qhqg12gbvhi8s5i18-module-import.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/m2n5c4kd7bzkbw15kylxh6h1la8ylzxg-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/m2//n5c4kd7bzkbw15kylxh6h1la8ylzxg-module-import-compiled.drv.bz2 16253 [ 1/ 4] Loading './foo.scm'... [ 2/ 4] Loading './guix/build/utils.scm'... [ 3/ 4] Compiling './foo.scm'... [ 4/ 4] Compiling './guix/build/utils.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/m2n5c4kd7bzkbw15kylxh6h1la8ylzxg-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/warixjvrqrdpcwbpij5aailmy1ag6nzv-thingie.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/wa//rixjvrqrdpcwbpij5aailmy1ag6nzv-thingie.drv.bz2 16254 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/warixjvrqrdpcwbpij5aailmy1ag6nzv-thingie.drv - actual-value: #t result: PASS test-name: gexp->derivation #:references-graphs location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:835 source: + (test-assert + "gexp->derivation #:references-graphs" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((one (text-file "one" (random-text))) + (two (gexp->derivation + "two" + (gexp (symlink + (ungexp one) + (ungexp output "chbouib"))))) + (build -> + (with-imported-modules + '((guix build store-copy) + (guix progress) + (guix records) + (guix sets) + (guix build utils)) + (gexp (begin + (use-modules (guix build store-copy)) + (with-output-to-file + (ungexp output) + (lambda () + (write (map store-info-item + (call-with-input-file + "guile" + read-reference-graph))))) + (with-output-to-file + (ungexp output "one") + (lambda () + (write (map store-info-item + (call-with-input-file + "one" + read-reference-graph))))) + (with-output-to-file + (ungexp output "two") + (lambda () + (write (map store-info-item + (call-with-input-file + "two" + read-reference-graph))))))))) + (drv (gexp->derivation + "ref-graphs" + build + #:references-graphs + `(("one" ,one) + ("two" ,two "chbouib") + ("guile" ,%bootstrap-guile)))) + (ok? (built-derivations (list drv))) + (guile-drv + (package->derivation %bootstrap-guile)) + (bash (interned-file + (search-bootstrap-binary + "bash" + (%current-system)) + "bash" + #:recursive? + #t)) + (g-one -> (derivation->output-path drv "one")) + (g-two -> (derivation->output-path drv "two")) + (g-guile -> (derivation->output-path drv))) + (return + (and ok? + (equal? + (call-with-input-file g-one read) + (list one)) + (lset= string=? + (call-with-input-file g-two read) + (list one + (derivation->output-path + two + "chbouib"))) + (lset= string=? + (call-with-input-file g-guile read) + (list (derivation->output-path guile-drv) + bash))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/9f4w2wfkbhl9js9zzdprazdpm752chpr-two.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/9f//4w2wfkbhl9js9zzdprazdpm752chpr-two.drv.bz2 16256 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/9f4w2wfkbhl9js9zzdprazdpm752chpr-two.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/v9yjws1l5hjjkacs1wfxdc43rl24j9mb-ref-graphs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/v9//yjws1l5hjjkacs1wfxdc43rl24j9mb-ref-graphs.drv.bz2 16257 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/v9yjws1l5hjjkacs1wfxdc43rl24j9mb-ref-graphs.drv - actual-value: #t result: PASS test-name: gexp->derivation #:allowed-references location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:885 source: + (test-assert + "gexp->derivation #:allowed-references" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet %store-monad + ((drv (gexp->derivation + "allowed-refs" + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink (ungexp output) "self") + (symlink (ungexp %bootstrap-guile) "guile"))) + #:allowed-references + (list "out" %bootstrap-guile)))) + (built-derivations (list drv))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/yc3wmpynzd326h0hhkbidsq2gxlkisqn-allowed-refs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/yc//3wmpynzd326h0hhkbidsq2gxlkisqn-allowed-refs.drv.bz2 16259 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/yc3wmpynzd326h0hhkbidsq2gxlkisqn-allowed-refs.drv - actual-value: #t result: PASS test-name: gexp->derivation #:allowed-references, specific output location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:897 source: + (test-assert + "gexp->derivation #:allowed-references, specific output" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((in (gexp->derivation + "thing" + (gexp (begin + (mkdir (ungexp output "ok")) + (mkdir (ungexp output "not-ok")))))) + (drv (gexp->derivation + "allowed-refs" + (gexp (begin + (pk (ungexp in "not-ok")) + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink (ungexp output) "self") + (symlink (ungexp in "ok") "ok"))) + #:allowed-references + (list "out" (gexp-input in "ok"))))) + (built-derivations (list drv))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/2gzs0d1blj9xh6fdqd0hp3krz4xnlyji-thing.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/2g//zs0d1blj9xh6fdqd0hp3krz4xnlyji-thing.drv.bz2 16261 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/2gzs0d1blj9xh6fdqd0hp3krz4xnlyji-thing.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/rhb896lhhwp4hmv2316mmlblxqqmy9qy-allowed-refs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/rh//b896lhhwp4hmv2316mmlblxqqmy9qy-allowed-refs.drv.bz2 16262 ;;; ("/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/vfz7qv6a91p3lqswms07dkjd9qxscay1-thing-not-ok") @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/rhb896lhhwp4hmv2316mmlblxqqmy9qy-allowed-refs.drv - actual-value: #t result: PASS test-name: gexp->derivation #:allowed-references, disallowed location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:914 source: + (test-assert + "gexp->derivation #:allowed-references, disallowed" + (let ((drv (run-with-store + %store + (gexp->derivation + "allowed-refs" + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink (ungexp %bootstrap-guile) "guile"))) + #:allowed-references + '())))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list drv)) + #f))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/hhcggkbjn7mfhv7w3k0wscvlf8fp6710-allowed-refs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/hh//cggkbjn7mfhv7w3k0wscvlf8fp6710-allowed-refs.drv.bz2 16263 output (`/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/wfgr6wmlzmz5nrhp3gzv102hfc8is42l-allowed-refs') is not allowed to refer to path `/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0' @ build-failed /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/hhcggkbjn7mfhv7w3k0wscvlf8fp6710-allowed-refs.drv - 1 output (`/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/wfgr6wmlzmz5nrhp3gzv102hfc8is42l-allowed-refs') is not allowed to refer to path `/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0' actual-value: #t result: PASS test-name: gexp->derivation #:disallowed-references, allowed location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:926 source: + (test-assert + "gexp->derivation #:disallowed-references, allowed" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet %store-monad + ((drv (gexp->derivation + "disallowed-refs" + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink (ungexp output) "self") + (symlink (ungexp %bootstrap-guile) "guile"))) + #:disallowed-references + '()))) + (built-derivations (list drv))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/l85y4das2wii2pjqswmrwpyp7dmrk13b-disallowed-refs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/l8//5y4das2wii2pjqswmrwpyp7dmrk13b-disallowed-refs.drv.bz2 16265 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/l85y4das2wii2pjqswmrwpyp7dmrk13b-disallowed-refs.drv - actual-value: #t result: PASS test-name: gexp->derivation #:disallowed-references location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:938 source: + (test-assert + "gexp->derivation #:disallowed-references" + (let ((drv (run-with-store + %store + (gexp->derivation + "disallowed-refs" + (gexp (begin + (mkdir (ungexp output)) + (chdir (ungexp output)) + (symlink (ungexp %bootstrap-guile) "guile"))) + #:disallowed-references + (list %bootstrap-guile))))) + (guard (c ((store-protocol-error? c) #t)) + (build-derivations %store (list drv)) + #f))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6i09yg2z9gxqijjjld3mb4xqfvs59p8g-disallowed-refs.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/6i//09yg2z9gxqijjjld3mb4xqfvs59p8g-disallowed-refs.drv.bz2 16266 output (`/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/wp4g7qli333h9ig6z3scnwan6456vmnc-disallowed-refs') is not allowed to refer to path `/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0' @ build-failed /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6i09yg2z9gxqijjjld3mb4xqfvs59p8g-disallowed-refs.drv - 1 output (`/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/wp4g7qli333h9ig6z3scnwan6456vmnc-disallowed-refs') is not allowed to refer to path `/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0' actual-value: #t result: PASS test-name: gexp->script location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:958 source: + (test-assert + "gexp->script" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((n -> (random (expt 2 50))) + (exp -> + (gexp (system* + (string-append + (ungexp %bootstrap-guile) + "/bin/guile") + "-c" + (object->string + '(display (expt (ungexp n) 2)))))) + (drv (gexp->script + "guile-thing" + exp + #:guile + %bootstrap-guile)) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv)))) + (let* ((pipe (open-input-pipe out)) + (str (get-string-all pipe))) + (return + (and (zero? (close-pipe pipe)) + (= (expt n 2) (string->number str)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) result: SKIP test-name: gexp->script #:module-path location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:975 source: + (test-assert + "gexp->script #:module-path" + (call-with-temporary-directory + (lambda (directory) + (define str "Fake (guix base32) module!") + (mkdir (string-append directory "/guix")) + (call-with-output-file + (string-append directory "/guix/base32.scm") + (lambda (port) + (write `(begin + (define-module (guix base32)) + (define-public %fake! ,str)) + port))) + (run-with-store + %store + (mlet* %store-monad + ((exp -> + (with-imported-modules + '((guix base32)) + (gexp (begin + (use-modules (guix base32)) + (write (list %load-path %fake!)))))) + (drv (gexp->script + "guile-thing" + exp + #:guile + %bootstrap-guile + #:module-path + (list directory))) + (out -> (derivation->output-path drv)) + (done (built-derivations (list drv)))) + (let* ((pipe (open-input-pipe out)) (data (read pipe))) + (return + (and (zero? (close-pipe pipe)) + (match data + ((load-path str*) + (and (string=? str* str) + (not (member + directory + load-path))))))))))))) result: SKIP test-name: program-file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1007 source: + (test-assert + "program-file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((n (random (expt 2 50))) + (exp (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules (guix build utils)) + (display (ungexp n)))))) + (file (program-file + "program" + exp + #:guile + %bootstrap-guile))) + (mlet* %store-monad + ((drv (lower-object file)) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((pipe (open-input-pipe out)) + (str (get-string-all pipe))) + (return + (and (zero? (close-pipe pipe)) + (= n (string->number str)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/3j23dbq69h8rgb983lfv0c7d4whwp7zg-program.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/3j//23dbq69h8rgb983lfv0c7d4whwp7zg-program.drv.bz2 16268 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/3j23dbq69h8rgb983lfv0c7d4whwp7zg-program.drv - actual-value: #t result: PASS test-name: program-file #:module-path location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1024 source: + (test-assert + "program-file #:module-path" + (call-with-temporary-directory + (lambda (directory) + (define text (random-text)) + (call-with-output-file + (string-append directory "/stupid-module.scm") + (lambda (port) + (write `(begin + (define-module (stupid-module)) + (define-public %stupid-thing ,text)) + port))) + (let* ((exp (with-imported-modules + '((stupid-module)) + (gexp (begin + (use-modules (stupid-module)) + (display %stupid-thing))))) + (file (program-file + "program" + exp + #:guile + %bootstrap-guile + #:module-path + (list directory)))) + (run-with-store + %store + (mlet* %store-monad + ((drv (lower-object file)) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((pipe (open-input-pipe out)) + (str (get-string-all pipe))) + (return + (and (zero? (close-pipe pipe)) + (string=? text str))))))))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/xclcpfmfrn4q4apjksfn9kj5r8yfwlvz-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/xc//lcpfmfrn4q4apjksfn9kj5r8yfwlvz-module-import-compiled.drv.bz2 16276 [ 1/ 2] Loading './stupid-module.scm'... [ 2/ 2] Compiling './stupid-module.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/xclcpfmfrn4q4apjksfn9kj5r8yfwlvz-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/cgjsnbwb41wlzrkdra79wh6myh29cy1i-program.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/cg//jsnbwb41wlzrkdra79wh6myh29cy1i-program.drv.bz2 16277 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/cgjsnbwb41wlzrkdra79wh6myh29cy1i-program.drv - actual-value: #t result: PASS test-name: program-file & with-extensions location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1052 source: + (test-assert + "program-file & with-extensions" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((exp (with-extensions + (list %extension-package) + (gexp (begin + (use-modules (hg2g)) + (display the-answer))))) + (file (program-file + "program" + exp + #:guile + %bootstrap-guile))) + (mlet* %store-monad + ((drv (lower-object file)) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (let* ((pipe (open-input-pipe out)) + (str (get-string-all pipe))) + (return + (and (zero? (close-pipe pipe)) + (= 42 (string->number str)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/mrzwxbcqg0a6639cjfa0axg1mvxv7hq8-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/mr//zwxbcqg0a6639cjfa0axg1mvxv7hq8-module-import-compiled.drv.bz2 16286 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/mrzwxbcqg0a6639cjfa0axg1mvxv7hq8-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6z4sp32fr28svipld6sbm8b33ym6hqm9-program.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/6z//4sp32fr28svipld6sbm8b33ym6hqm9-program.drv.bz2 16287 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/6z4sp32fr28svipld6sbm8b33ym6hqm9-program.drv - actual-value: #t result: PASS test-name: scheme-file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1068 source: + (test-assert + "scheme-file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((text (plain-file "foo" "Hello, world!")) + (scheme + (scheme-file + "bar" + (gexp (list "foo" (ungexp text)))))) + (mlet* %store-monad + ((drv (lower-object scheme)) + (text (lower-object text)) + (out -> (derivation->output-path drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (mlet %store-monad + ((refs (references* out))) + (return + (and (equal? refs (list text)) + (equal? + `(list "foo" ,text) + (call-with-input-file out read)))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/cy9bylkapi3zhf27hfsdj57ai22r28v5-bar.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/cy//9bylkapi3zhf27hfsdj57ai22r28v5-bar.drv.bz2 16296 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/cy9bylkapi3zhf27hfsdj57ai22r28v5-bar.drv - actual-value: #t result: PASS test-name: text-file* location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1081 source: + (test-assert + "text-file*" + (run-with-store + %store + (mlet* %store-monad + ((drv (package->derivation %bootstrap-guile)) + (guile -> (derivation->output-path drv)) + (file (text-file "bar" "This is bar.")) + (text (text-file* + "foo" + %bootstrap-guile + "/bin/guile " + (gexp-input %bootstrap-guile "out") + "/bin/guile " + drv + "/bin/guile " + file)) + (done (built-derivations (list text))) + (out -> (derivation->output-path text)) + (refs (references* out))) + (return + (and (lset= string=? refs (list guile file)) + (equal? + (call-with-input-file out get-string-all) + (string-append + guile + "/bin/guile " + guile + "/bin/guile " + guile + "/bin/guile " + file))))) + #:guile-for-build + (package-derivation %store %bootstrap-guile))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/54m3xqp1kwvzsghn3g43kldz1kwvs4cl-foo.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/54//m3xqp1kwvzsghn3g43kldz1kwvs4cl-foo.drv.bz2 16297 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/54m3xqp1kwvzsghn3g43kldz1kwvs4cl-foo.drv - actual-value: #t result: PASS test-name: mixed-text-file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1104 source: + (test-assert + "mixed-text-file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((file -> + (mixed-text-file + "mixed" + "export PATH=" + %bootstrap-guile + "/bin")) + (drv (lower-object file)) + (out -> (derivation->output-path drv)) + (guile-drv + (package->derivation %bootstrap-guile)) + (guile -> (derivation->output-path guile-drv))) + (mbegin + %store-monad + (built-derivations (list drv)) + (mlet %store-monad + ((refs (references* out))) + (return + (and (string=? + (string-append "export PATH=" guile "/bin") + (call-with-input-file out get-string-all)) + (equal? refs (list guile))))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/vhhdrl05bhzlvkapbxx2s04zlclg0qgs-mixed.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/vh//hdrl05bhzlvkapbxx2s04zlclg0qgs-mixed.drv.bz2 16299 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/vhhdrl05bhzlvkapbxx2s04zlclg0qgs-mixed.drv - actual-value: #t result: PASS test-name: file-union location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1119 source: + (test-assert + "file-union" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet* %store-monad + ((union -> + (file-union + "union" + `(("a" ,(plain-file "a" "1")) + ("b/c/d" ,(plain-file "d" "2")) + ("e" ,(plain-file "e" "3"))))) + (drv (lower-object union)) + (out -> (derivation->output-path drv))) + (define (contents=? file str) + (string=? + (call-with-input-file + (string-append out "/" file) + get-string-all) + str)) + (mbegin + %store-monad + (built-derivations (list drv)) + (return + (and (contents=? "a" "1") + (contents=? "b/c/d" "2") + (contents=? "e" "3"))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/ryvn2ya3z018fzydznhz5gy4xyz6jaqb-union.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/ry//vn2ya3z018fzydznhz5gy4xyz6jaqb-union.drv.bz2 16301 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/ryvn2ya3z018fzydznhz5gy4xyz6jaqb-union.drv - actual-value: #t result: PASS test-name: gexp->derivation vs. %current-target-system location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1137 source: + (test-assert + "gexp->derivation vs. %current-target-system" + (let ((mval (gexp->derivation + "foo" + (gexp (begin + (mkdir (ungexp output)) + (foo (ungexp-native gnu-make)))) + #:target + #f))) + (parameterize + ((%current-target-system "fooooo")) + (derivation? (run-with-store %store mval))))) actual-value: #t result: PASS test-name: lower-object location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1148 source: + (test-assert + "lower-object" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (mlet %store-monad + ((drv1 (lower-object %bootstrap-guile)) + (drv2 (lower-object (package-source coreutils))) + (item (lower-object (plain-file "foo" "Hello!")))) + (return + (and (derivation? drv1) + (derivation? drv2) + (store-path? item)))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) actual-value: #t result: PASS test-name: lower-object, computed-file location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1155 source: + (test-assert + "lower-object, computed-file" + (let ((store (open-connection-for-tests))) + (dynamic-wind + (const #t) + (lambda () + (run-with-store + store + (let* ((text (plain-file "foo" "Hello!")) + (exp (gexp (begin + (mkdir (ungexp output)) + (symlink + (ungexp %bootstrap-guile) + (string-append (ungexp output) "/guile")) + (symlink + (ungexp text) + (string-append (ungexp output) "/text"))))) + (computed (computed-file "computed" exp))) + (mlet* %store-monad + ((text (lower-object text)) + (guile-drv (lower-object %bootstrap-guile)) + (comp-drv (lower-object computed)) + (comp -> (derivation->output-path comp-drv))) + (mbegin + %store-monad + (built-derivations (list comp-drv)) + (return + (and (string=? + (readlink (string-append comp "/guile")) + (derivation->output-path guile-drv)) + (string=? + (readlink (string-append comp "/text")) + text)))))) + #:guile-for-build + (%guile-for-build))) + (lambda () (close-connection store))))) @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/h52zjsh152bb6dyzgw8r5x0n57bnv4xj-computed.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/h5//2zjsh152bb6dyzgw8r5x0n57bnv4xj-computed.drv.bz2 16304 @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/h52zjsh152bb6dyzgw8r5x0n57bnv4xj-computed.drv - actual-value: #t result: PASS test-name: lower-object, computed-file, #:system location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1174 source: + (test-equal + "lower-object, computed-file, #:system" + '("mips64el-linux") + (run-with-store + %store + (let* ((exp (gexp (symlink (ungexp coreutils) (ungexp output)))) + (computed + (computed-file + "computed" + exp + #:guile + %bootstrap-guile))) + (mlet* %store-monad + ((drv (lower-object computed "mips64el-linux")) + (refs (references* (derivation-file-name drv)))) + (return + (delete-duplicates + (filter-map + (lambda (file) + (and (string-suffix? ".drv" file) + (let ((drv (read-derivation-from-file file))) + (derivation-system drv)))) + (cons (derivation-file-name drv) refs)))))))) expected-value: ("mips64el-linux") actual-value: ("mips64el-linux") result: PASS test-name: lower-object & gexp-input-error? location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1192 source: + (test-assert + "lower-object & gexp-input-error?" + (guard (c ((gexp-input-error? c) + (gexp-error-invalid-input c))) + (run-with-store + %store + (lower-object (current-module)) + #:guile-for-build + (%guile-for-build)))) actual-value: # result: PASS test-name: printer location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1199 source: + (test-assert + "printer" + (string-match + "^#$" + (with-output-to-string + (lambda () + (write (gexp (string-append (ungexp coreutils) "/bin/uname"))))))) actual-value: #("#:out> \"/bin/uname\") 546f840>" (0 . 122)) result: PASS test-name: printer vs. ungexp-splicing location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1208 source: + (test-assert + "printer vs. ungexp-splicing" + (string-match + "^#$" + (with-output-to-string + (lambda () + (write (gexp (begin (ungexp-splicing (gexp ()))))))))) actual-value: #("#" (0 . 16)) result: PASS test-name: sugar location: /home/mwette/proj/guix/guix-1.0.1/tests/gexp.scm:1216 source: + (test-equal + "sugar" + '(gexp (foo (ungexp bar) + (ungexp baz "out") + (ungexp (chbouib 42)) + (ungexp-splicing (list x y z)) + (ungexp-native foo) + (ungexp-native foo "out") + (ungexp-native (chbouib 42)) + (ungexp-native-splicing (list x y z)))) + '(gexp (foo (ungexp bar) + (ungexp baz "out") + (ungexp (chbouib 42)) + (ungexp-splicing (list x y z)) + (ungexp-native foo) + (ungexp-native foo "out") + (ungexp-native (chbouib 42)) + (ungexp-native-splicing (list x y z))))) expected-value: (gexp (foo (ungexp bar) (ungexp baz "out") (ungexp (chbouib 42)) (ungexp-splicing (list x y z)) (ungexp-native foo) (ungexp-native foo "out") (ungexp-native (chbouib 42)) (ungexp-native-splicing (list x y z)))) actual-value: (gexp (foo (ungexp bar) (ungexp baz "out") (ungexp (chbouib 42)) (ungexp-splicing (list x y z)) (ungexp-native foo) (ungexp-native foo "out") (ungexp-native (chbouib 42)) (ungexp-native-splicing (list x y z)))) result: PASS SKIP: tests/syscalls ==================== test-name: mount, ENOENT location: /home/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:57 source: + (test-assert + "mount-points" + (any (cute member <> (mount-points)) + '("/" "/proc" "/sys" "/dev"))) actual-value: ("/" "/sys/fs/selinux" "/proc/sys/fs/binfmt_misc" "/dev/hugepages" "/dev/mqueue" "/sys/kernel/debug" "/tmp" "/boot" "/gnu" "/home" "/opt" "/boot/efi" "/xtra" "/var/lib/nfs/rpc_pipefs" "/run/user/42" "/run/user/1001") result: PASS test-name: utime with AT_SYMLINK_NOFOLLOW location: /home/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:64 source: + (test-equal + "utime with AT_SYMLINK_NOFOLLOW" + '(0 0) + (begin + (symlink "/nowhere" temp-file) + (utime temp-file 0 0 0 0 AT_SYMLINK_NOFOLLOW) + (let ((st (lstat temp-file))) + (delete-file temp-file) + (list (stat:mtime st) (stat:atime st))))) expected-value: (0 0) actual-value: (0 0) result: PASS test-name: swapon, ENOENT/EPERM location: /home/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:76 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:84 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:92 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:100 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:107 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:124 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:137 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:175 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:208 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:216 source: + (test-equal + "scandir*, ASCII file names" + (scandir + (dirname + (search-path %load-path "guix/base32.scm")) + (const #t) + stringprocedure + 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:250 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 (termios-input-speed termios) 0) + (> (termios-output-speed termios) 0)))) actual-value: #t result: PASS test-name: tcsetattr location: /home/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:518 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:523 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:534 source: + (test-assert + "terminal-columns" + (> (terminal-columns) 0)) actual-value: #t result: PASS test-name: terminal-columns non-file port location: /home/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:537 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:541 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:558 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/mwette/proj/guix/guix-1.0.1/tests/syscalls.scm:563 source: + (test-assert + "read-utmpx" + (let ((result + (call-with-input-file + "/var/run/utmpx" + read-utmpx))) + (or (utmpx? result) (eof-object? result)))) result: SKIP warning: failed to delete /tmp/guix-directory.Vfyx0y/??: No such file or directory warning: failed to delete /tmp/guix-directory.Vfyx0y/??: No such file or directory SKIP: tests/lzlib ================= test-name: null bytevector location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:74 source: + (test-assert + "null bytevector" + (compress-and-decompress + (make-bytevector (+ (random 100000) (* 20 1024))))) result: SKIP test-name: random bytevector location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:78 source: + (test-assert + "random bytevector" + (compress-and-decompress + (random-bytevector + (+ (random 100000) (* 20 1024))))) result: SKIP test-name: small bytevector location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:81 source: + (test-assert + "small bytevector" + (compress-and-decompress (random-bytevector 127))) result: SKIP test-name: 1 bytevector location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:84 source: + (test-assert + "1 bytevector" + (compress-and-decompress (random-bytevector 1))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (2 * dictionary) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:87 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (2 * dictionary)" + (compress-and-decompress + (random-bytevector + (* 2 + (car (car (assoc-ref + (@@ (guix lzlib) %compression-levels) + (@@ (guix lzlib) %default-compression-level)))))))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (64KiB) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:93 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (64KiB)" + (compress-and-decompress + (random-bytevector (* 64 1024)))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (64KiB-1) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:96 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (64KiB-1)" + (compress-and-decompress + (random-bytevector (#{1-}# (* 64 1024))))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (64KiB+1) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:99 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (64KiB+1)" + (compress-and-decompress + (random-bytevector (#{1+}# (* 64 1024))))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (1MiB) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:102 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (1MiB)" + (compress-and-decompress + (random-bytevector (* 1024 1024)))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (1MiB-1) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:105 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (1MiB-1)" + (compress-and-decompress + (random-bytevector (#{1-}# (* 1024 1024))))) result: SKIP test-name: Bytevector of size relative to Lzip internal buffers (1MiB+1) location: /home/mwette/proj/guix/guix-1.0.1/tests/lzlib.scm:108 source: + (test-assert + "Bytevector of size relative to Lzip internal buffers (1MiB+1)" + (compress-and-decompress + (random-bytevector (#{1+}# (* 1024 1024))))) result: SKIP random seed for tests: 1561229101 SKIP: tests/pack ================ test-name: self-contained-tarball location: /home/mwette/proj/guix/guix-1.0.1/tests/pack.scm:58 source: + (test-assert + "self-contained-tarball" + (let ((guile (package-derivation %store %bootstrap-guile))) + (run-with-store + %store + (mlet* %store-monad + ((profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (self-contained-tarball + "pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:compressor + %gzip-compressor + #:archiver + %tar-bootstrap)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (srfi srfi-1)) + (define store + (string-append + "." + (%store-directory) + "/")) + (define (canonical? file) + (let ((st (lstat file))) + (or (not (string-prefix? store file)) + (eq? 'symlink (stat:type st)) + (and (= 1 (stat:mtime st)) + (zero? (logand + 146 + (stat:mode st))))))) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + (string-append bin "/guile")) + (file-exists? store) + (every canonical? + (find-files + "." + (const #t) + #:directories? + #t)) + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin)) + (string=? + (string-append + ".." + (ungexp profile) + "/bin/guile") + (readlink "bin/Guile")))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) random seed for tests: 1561227333 @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/gjdyvh8skx9scs86d6mbqymwmdafgdlx-module-import-compiled.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/gj//dyvh8skx9scs86d6mbqymwmdafgdlx-module-import-compiled.drv.bz2 17498 [ 1/14] Loading './gnu/build/install.scm'... [ 2/14] Loading './guix/build/store-copy.scm'... [ 3/14] Loading './guix/build/union.scm'... [ 4/14] Loading './guix/build/utils.scm'... [ 5/14] Loading './guix/progress.scm'... [ 6/14] Loading './guix/records.scm'... [ 7/14] Loading './guix/sets.scm'... [ 8/14] Compiling './gnu/build/install.scm'... [ 9/14] Compiling './guix/build/store-copy.scm'... [10/14] Compiling './guix/build/union.scm'... [11/14] Compiling './guix/build/utils.scm'... [12/14] Compiling './guix/progress.scm'... [13/14] Compiling './guix/records.scm'... [14/14] Compiling './guix/sets.scm'... @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/gjdyvh8skx9scs86d6mbqymwmdafgdlx-module-import-compiled.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/288bi7bwkva4cj8b3xjqqh2mpydni13m-pack.targz.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/28//8bi7bwkva4cj8b3xjqqh2mpydni13m-pack.targz.drv.bz2 17499 /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/8k2wsr667qc89hvbc8c5smy6b9q4g8c7-bootstrap-binaries-0/bin/tar: unrecognized option '--sort=name' Try 'tar --help' or 'tar --usage' for more information. copying 3 store items [################# ] copying 3 store items [################################### ] copying 3 store items [######################################################] copying 3 store items tar: Option --mtime: Treating date '@1' as 1969-12-31 16:00:01 tar: Option --mtime: Treating date '@1' as 1969-12-31 16:00:01 ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/etc/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/etc/profile ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/lib ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/share ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/bin ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/manifest ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/.guile-real ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/guile ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42/ec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4/gnu.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67/compare.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9/gnu.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-16.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-13.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-2.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-10.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-88.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-60.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-17.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-8.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-18.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-69.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-34.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-6.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-19.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-38.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-14.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-37.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-35.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-27.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-31.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-26.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-45.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-98.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-11.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-39.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-1.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-41.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/html.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/serialize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/indexing.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/string-utils.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/reflection.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/docbook.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/plain-text.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/bytecode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/bytecode/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/objcode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/objcode/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-scheme.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/effects.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/cse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/optimize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/analyze.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/canonicalize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/fix-letrec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/peval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/compile-glil.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/inline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/primitives.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/decompile-bytecode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/compile-bytecode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/disassemble.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/compile-assembly.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/value/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/value/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/decompile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/tokenize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/base.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/array.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/function.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/impl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/macros.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/value-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/function-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/subrs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/parser.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/lexer.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/bindings.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/doc-snarf.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/frisk.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/generate-autoload.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-scheme-source.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/help.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/summarize-guile-TODO.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-text-outline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/display-commentary.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-guile-m4-docs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/punify.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/use2dot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/autofrisk.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/disassemble.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-check-and-output-texi.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/api-diff.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/lint.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-rfc822.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/scan-api.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/common.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/server.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/command.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/error-handling.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/describe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/ck.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.upstream.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/target.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/pmatch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/syntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/language.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/message.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/inspect.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/trap-state.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/trace.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/program.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/traps.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/vm.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/coverage.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/frame.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/instruction.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/objcode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/xref.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/foreign.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/fixnums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/flonums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/bitwise.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/inspection.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/syntactic.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/procedural.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/ports.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/syntax-case.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/enums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/bytevectors.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/lists.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/control.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-pairs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/hashtables.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/unicode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/files.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/base.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/programs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/exceptions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/sorting.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-strings.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/conditions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/internal.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/accessors.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/util.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/dispatch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/stklos.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/save.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/composite-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/describe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/active-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/input-parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXML-tree-trans.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SSAX.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/assert.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXPath-old.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax/input-parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/sxml-match.ss ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/match.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/fold.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/transform.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/xpath.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/apply-templates.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server/http.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/client.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/uri.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/http.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/response.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/request.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/q.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/documentation.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/history.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/deprecated.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/string-fun.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/poll.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/hcons.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/i18n.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/serialize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/and-let-star.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/streams.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/format.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/vlist.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval-string.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r6rs-libraries.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/expect.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/channel.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/popen.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/threads.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/pretty-print.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/readline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/slib.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/control.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/iconv.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/time.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r4rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/session.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/save-stack.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/occam-channel.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/calling.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/poe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/scm-style-repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/stack-catch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/syncase.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/common-list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/networking.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.upstream.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ls.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ftw.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/boot-9.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/buffered-input.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/gap-buffer.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/local-eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe-r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/receive.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/top-repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/futures.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/regex.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/quasisyntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/weak-vector.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/getopt-long.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/posix.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/rw.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/command-line.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/mapping.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/lineio.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/optargs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/curried-definitions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax-pp.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/null.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/rdelim.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/binary-ports.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/runq.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/guile-procedures.txt ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/statprof.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4/gnu.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-35.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-98.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-10.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-27.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-1.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-39.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-37.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-6.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-17.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-31.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-19.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-69.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-60.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-67.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-34.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-2.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-42.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-45.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-38.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-26.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-14.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-8.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-18.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-16.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-11.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-41.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-88.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-13.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/plain-text.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/docbook.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/indexing.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/serialize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/string-utils.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/html.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/reflection.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/bytecode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/bytecode/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/objcode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/objcode/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-scheme.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/cse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/canonicalize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/peval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/primitives.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/inline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/optimize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/compile-glil.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/effects.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/analyze.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/disassemble.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/compile-assembly.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/value/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/value/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/function.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/base.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/tokenize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/array.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/impl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/value-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/subrs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/function-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/macros.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/lexer.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/bindings.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/parser.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-rfc822.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/autofrisk.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/doc-snarf.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/lint.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/api-diff.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/summarize-guile-TODO.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-text-outline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-scheme-source.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/use2dot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-check-and-output-texi.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/help.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/scan-api.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/frisk.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-guile-m4-docs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/disassemble.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/display-commentary.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/punify.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/generate-autoload.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/common.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/server.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/command.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/error-handling.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/message.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/ck.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/syntax.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/target.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/lalr.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/pmatch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/language.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/traps.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/coverage.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/vm.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/inspect.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trace.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/instruction.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/program.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/frame.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/objcode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trap-state.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/xref.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/foreign.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/fixnums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/flonums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/inspection.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/procedural.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/syntactic.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/ports.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/exceptions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/lists.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/control.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-pairs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-strings.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/bytevectors.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/unicode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/programs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/enums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/sorting.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/syntax-case.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/base.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/hashtables.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/files.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/conditions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/accessors.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/util.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/save.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/internal.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/active-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/composite-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/dispatch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/describe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/stklos.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax/input-parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/apply-templates.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/fold.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/transform.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/xpath.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/match.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server/http.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/client.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/response.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/uri.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/http.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/request.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r4rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/scm-style-repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/curried-definitions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/expect.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/receive.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe-r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/i18n.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/popen.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poll.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/common-list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/deprecated.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/iconv.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rw.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/local-eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/control.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/gap-buffer.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/buffered-input.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/session.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/futures.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval-string.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/channel.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/runq.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ftw.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/boot-9.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rdelim.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/readline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/occam-channel.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/psyntax-pp.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/time.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/command-line.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/syncase.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/save-stack.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/mapping.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/and-let-star.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/regex.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/serialize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/pretty-print.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/optargs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/weak-vector.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/format.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/calling.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/top-repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/stack-catch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/posix.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/hcons.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/vlist.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/q.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/getopt-long.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/binary-ports.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/streams.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/null.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/slib.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/string-fun.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/documentation.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ls.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/threads.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/networking.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/history.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/lineio.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/match.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/statprof.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1wvgqrh278ypi79h2lh2zq0fmay7ph0y-bash ./bin/ ./bin/Guile ./bin/Guile tar: Missing links to './bin/Guile'. @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/288bi7bwkva4cj8b3xjqqh2mpydni13m-pack.targz.drv - @ build-started /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/fj2sv5wh9pwqp47vb7nyx0dn5j8skisd-check-tarball.drv - x86_64-linux /home/mwette/proj/guix/guix-1.0.1/test-tmp/var/log/guix/drvs/fj//2sv5wh9pwqp47vb7nyx0dn5j8skisd-check-tarball.drv.bz2 17504 ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/etc/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/etc/profile ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/lib ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/share ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/bin ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/01d0kjsgangfx87grmrzpbq53gcm5z74-profile/manifest ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/.guile-real ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/bin/guile ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42/ec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4/gnu.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67/compare.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9/gnu.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-16.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-13.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-2.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-42.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-10.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-4.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-67.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-88.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-60.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-17.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-8.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-18.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-69.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-34.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-6.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-19.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-38.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-14.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-37.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-35.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-27.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-9.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-31.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-26.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-45.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-98.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-11.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-39.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-1.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/srfi/srfi-41.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/html.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/serialize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/indexing.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/string-utils.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/reflection.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/docbook.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo/plain-text.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/bytecode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/bytecode/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/objcode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/objcode/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/compile-scheme.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/brainfuck/parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/effects.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/cse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/optimize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/analyze.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/canonicalize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/fix-letrec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/peval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/compile-glil.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/inline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il/primitives.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/decompile-bytecode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/compile-bytecode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly/disassemble.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil/compile-assembly.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/value/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/value/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/decompile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/scheme/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/tokenize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/base.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/array.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/function.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/ecmascript/impl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/macros.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/value-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/function-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime/subrs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/parser.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/spec.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/runtime.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/lexer.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/compile-tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/elisp/bindings.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/tree-il.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/assembly.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/language/glil.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/doc-snarf.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/frisk.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/generate-autoload.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-scheme-source.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/help.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/summarize-guile-TODO.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-text-outline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/display-commentary.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-guile-m4-docs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/punify.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/use2dot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/autofrisk.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/disassemble.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/snarf-check-and-output-texi.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/api-diff.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/lint.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/read-rfc822.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/scripts/scan-api.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/common.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/server.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/command.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/error-handling.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/repl/describe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/ck.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/lalr.upstream.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/target.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/pmatch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/syntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/language.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/base/message.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/inspect.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/trap-state.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/trace.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/program.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/traps.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/vm.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/coverage.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/frame.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/instruction.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/vm/objcode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/xref.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/system/foreign.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/fixnums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/flonums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/arithmetic/bitwise.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/inspection.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/syntactic.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/records/procedural.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/ports.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/io/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/syntax-case.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/enums.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/bytevectors.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/lists.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/control.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-pairs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/hashtables.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/unicode.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/files.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/base.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/programs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/exceptions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/sorting.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/mutable-strings.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs/conditions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/internal.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/accessors.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/util.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/compile.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/dispatch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/stklos.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/save.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/composite-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/describe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops/active-slot.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/oop/goops.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/input-parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXML-tree-trans.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SSAX.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/assert.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/upstream/SXPath-old.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax/input-parse.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/sxml-match.ss ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/match.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/fold.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/transform.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/ssax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/simple.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/xpath.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/sxml/apply-templates.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server/http.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/client.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/uri.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/http.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/server.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/response.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/web/request.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/q.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/documentation.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/history.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/deprecated.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/string-fun.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/poll.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/hcons.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/i18n.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/serialize.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/and-let-star.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/streams.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/format.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/vlist.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval-string.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r6rs-libraries.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/expect.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/channel.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/popen.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/threads.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/pretty-print.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/readline.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/slib.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/control.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/iconv.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/time.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r4rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/debug.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/session.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/save-stack.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/occam-channel.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/calling.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/poe.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/scm-style-repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/stack-catch.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/syncase.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/common-list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/networking.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/match.upstream.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ls.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/ftw.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/boot-9.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/buffered-input.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/gap-buffer.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/local-eval.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/safe-r5rs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/receive.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/top-repl.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/futures.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/regex.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/quasisyntax.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/weak-vector.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/getopt-long.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/posix.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/rw.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/command-line.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/mapping.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/lineio.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/optargs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/curried-definitions.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/list.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/psyntax-pp.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/null.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/rdelim.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/binary-ports.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/ice-9/runq.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/rnrs.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/guile-procedures.txt ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/texinfo.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/share/guile/2.0/statprof.scm ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4/gnu.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9/gnu.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-35.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-98.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-10.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-27.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-1.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-39.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-37.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-6.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-17.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-31.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-19.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-69.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-60.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-67.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-34.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-2.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-4.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-42.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-45.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-38.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-26.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-14.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-8.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-18.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-9.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-16.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-11.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-41.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-88.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/srfi/srfi-13.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/plain-text.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/docbook.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/indexing.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/serialize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/string-utils.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/html.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo/reflection.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/bytecode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/bytecode/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/objcode/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/objcode/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-scheme.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/brainfuck/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/cse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/canonicalize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/peval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/primitives.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/fix-letrec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/inline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/optimize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/compile-glil.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/effects.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il/analyze.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/compile-bytecode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/decompile-bytecode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly/disassemble.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/compile-assembly.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/value/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/value/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/decompile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/scheme/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/function.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/base.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/tokenize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/array.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/ecmascript/impl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/value-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/subrs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/function-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime/macros.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/spec.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/lexer.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/bindings.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/runtime.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/compile-tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/elisp/parser.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/glil.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/tree-il.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/language/assembly.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-rfc822.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/autofrisk.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/doc-snarf.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/lint.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/api-diff.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/summarize-guile-TODO.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-text-outline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/read-scheme-source.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/use2dot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-check-and-output-texi.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/help.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/scan-api.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/frisk.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/snarf-guile-m4-docs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/disassemble.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/display-commentary.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/punify.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/scripts/generate-autoload.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/common.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/server.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/command.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/repl/error-handling.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/message.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/ck.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/syntax.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/target.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/lalr.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/pmatch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/base/language.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/traps.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/coverage.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/vm.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/inspect.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trace.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/instruction.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/program.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/frame.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/objcode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/vm/trap-state.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/xref.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/system/foreign.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/fixnums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/bitwise.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/arithmetic/flonums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/inspection.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/procedural.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/records/syntactic.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/ports.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/io/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/exceptions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/lists.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/control.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-pairs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/mutable-strings.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/bytevectors.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/unicode.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/programs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/enums.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/sorting.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/syntax-case.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/base.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/hashtables.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/files.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs/conditions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/accessors.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/util.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/compile.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/save.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/internal.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/active-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/composite-slot.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/dispatch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/describe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops/stklos.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/oop/goops.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax/input-parse.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/apply-templates.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/fold.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/transform.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/simple.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/ssax.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/xpath.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/sxml/match.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server/http.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/client.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/response.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/server.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/uri.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/http.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/web/request.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r4rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/scm-style-repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/curried-definitions.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/expect.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/receive.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe-r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/i18n.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/popen.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/poll.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/common-list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/deprecated.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/iconv.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rw.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/local-eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/control.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/gap-buffer.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/buffered-input.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/session.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/futures.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval-string.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/safe.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/channel.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/runq.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ftw.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/boot-9.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/r5rs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/rdelim.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/readline.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/occam-channel.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/psyntax-pp.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/time.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/command-line.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/syncase.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/save-stack.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/mapping.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/and-let-star.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/regex.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/serialize.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/pretty-print.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/optargs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/eval.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/weak-vector.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/debug.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/format.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/calling.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/top-repl.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/stack-catch.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/posix.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/hcons.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/vlist.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/q.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/getopt-long.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/binary-ports.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/streams.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/null.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/slib.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/string-fun.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/documentation.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/ls.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/threads.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/list.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/networking.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/history.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/lineio.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/ice-9/match.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/texinfo.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/rnrs.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1xkg9yy7hv1k951n2w8rz3jaxq9cfks7-guile-bootstrap-2.0/lib/guile/2.0/ccache/statprof.go ./home/mwette/proj/guix/guix-1.0.1/test-tmp/store/1wvgqrh278ypi79h2lh2zq0fmay7ph0y-bash ./bin/ ./bin/Guile ./bin/Guile @ build-succeeded /home/mwette/proj/guix/guix-1.0.1/test-tmp/store/fj2sv5wh9pwqp47vb7nyx0dn5j8skisd-check-tarball.drv - actual-value: #t result: PASS test-name: self-contained-tarball + localstatedir location: /home/mwette/proj/guix/guix-1.0.1/tests/pack.scm:117 source: + (test-assert + "self-contained-tarball + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (self-contained-tarball + "tar-pack" + profile + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (gexp (let ((bin (string-append + "." + (ungexp profile) + "/bin"))) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (system* "tar" "xvf" (ungexp tarball)) + (mkdir (ungexp output)) + (exit (and (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (readlink bin))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: docker-image + localstatedir location: /home/mwette/proj/guix/guix-1.0.1/tests/pack.scm:140 source: + (test-assert + "docker-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (tarball + (docker-image + "docker-pack" + profile + #:symlinks + '(("/bin/Guile" -> "bin/guile")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp %tar-bootstrap) + "/bin")) + (mkdir "base") + (with-directory-excursion + "base" + (invoke "tar" "xvf" (ungexp tarball))) + (match (find-files "base" "layer.tar") + ((layer) (invoke "tar" "xvf" layer))) + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-append + (ungexp profile) + "/bin/guile") + (pk 'guilelink + (readlink "bin/Guile")))) + (mkdir (ungexp output))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP test-name: squashfs-image + localstatedir location: /home/mwette/proj/guix/guix-1.0.1/tests/pack.scm:180 source: + (test-assert + "squashfs-image + localstatedir" + (let ((guile (package-derivation store %bootstrap-guile))) + (run-with-store + store + (mlet* %store-monad + ((guile (set-guile-for-build (default-guile))) + (profile + (profile-derivation + (packages->manifest (list %bootstrap-guile)) + #:hooks + '() + #:locales? + #f)) + (image (squashfs-image + "squashfs-pack" + profile + #:symlinks + '(("/bin" -> "bin")) + #:localstatedir? + #t)) + (check (gexp->derivation + "check-tarball" + (with-imported-modules + '((guix build utils)) + (gexp (begin + (use-modules + (guix build utils) + (ice-9 match)) + (define bin + (string-append + "." + (ungexp profile) + "/bin")) + (setenv + "PATH" + (string-append + (ungexp squashfs-tools-next) + "/bin")) + (invoke "unsquashfs" (ungexp image)) + (with-directory-excursion + "squashfs-root" + (when (and (file-exists? + (string-append bin "/guile")) + (file-exists? + "var/guix/db/db.sqlite") + (string=? + (string-append + (ungexp %bootstrap-guile) + "/bin") + (pk 'binlink (readlink bin))) + (string=? + (string-drop + (string-append + (ungexp profile) + "/bin") + 1) + (pk 'guilelink + (readlink "bin")))) + (mkdir (ungexp output)))))))))) + (built-derivations (list check))) + #:guile-for-build + guile))) result: SKIP FAIL: tests/guix-build-branch ============================= accepted connection from pid 18056, user mwette + guix build --version guix build (GNU Guix) 1.0.1 Copyright (C) 2019 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' ++ guix build guile-gcrypt -d accepted connection from pid 18073, user mwette + orig_drv=/home/mwette/proj/guix/guix-1.0.1/test-tmp/store/18ck9672wax2asspiin305l3drpjq8g3-guile-gcrypt-0.1.0.drv ++ guix build guile-gcrypt --with-branch=guile-gcrypt=master -d accepted connection from pid 18078, user mwette updating checkout of 'https://notabug.org/cwebber/guile-gcrypt.git'... guix build: error: cannot fetch branch 'master' from https://notabug.org/cwebber/guile-gcrypt.git: failed to resolve path '/home/mwette/proj/guix/guix-1.0.1/test-tmp/var/18047/cache-18047/guix/checkouts/yxwtks42sv5sew5opm5xd3umk7xmxwfr2vgde5nsbfj6fmb5epmq': No such file or directory + latest_drv= ./test-env: line 1: 18055 Terminated "/home/mwette/proj/guix/guix-1.0.1/pre-inst-env" "/home/mwette/proj/guix/guix-1.0.1/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" FAIL tests/guix-build-branch.sh (exit status: 1) SKIP: tests/guix-pack-localstatedir =================================== accepted connection from pid 18363, user mwette + guix pack --version guix pack (GNU Guix) 1.0.1 Copyright (C) 2019 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + storedir=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/opt/local/var + NIX_STORE_DIR=/gnu/store + GUIX_DAEMON_SOCKET=/opt/local/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' + exit 77 ./test-env: line 1: 18362 Terminated "/home/mwette/proj/guix/guix-1.0.1/pre-inst-env" "/home/mwette/proj/guix/guix-1.0.1/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" SKIP tests/guix-pack-localstatedir.sh (exit status: 77) SKIP: tests/guix-pack-relocatable ================================= accepted connection from pid 18403, user mwette + guix pack --version guix pack (GNU Guix) 1.0.1 Copyright (C) 2019 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ++ guile -c '(use-modules (guix config))(display %storedir)' + storedir=/gnu/store ++ guile -c '(use-modules (guix config))(display %localstatedir)' + localstatedir=/opt/local/var + NIX_STORE_DIR=/gnu/store + GUIX_DAEMON_SOCKET=/opt/local/var/guix/daemon-socket/socket + export NIX_STORE_DIR GUIX_DAEMON_SOCKET + guile -c '(use-modules (guix)) (exit (false-if-exception (open-connection)))' + exit 77 ./test-env: line 1: 18402 Terminated "/home/mwette/proj/guix/guix-1.0.1/pre-inst-env" "/home/mwette/proj/guix/guix-1.0.1/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" SKIP tests/guix-pack-relocatable.sh (exit status: 77) SKIP: tests/guix-describe ========================= accepted connection from pid 20677, user mwette + guix describe --version guix describe (GNU Guix) 1.0.1 Copyright (C) 2019 the Guix authors License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. + tmpfile=t-guix-describe-20685 + trap 'rm -f t-guix-describe-20685' EXIT + rm -f t-guix-describe-20685 + '[' -d /home/mwette/proj/guix/guix-1.0.1/.git ']' + exit 77 + rm -f t-guix-describe-20685 ./test-env: line 1: 20676 Terminated "/home/mwette/proj/guix/guix-1.0.1/pre-inst-env" "/home/mwette/proj/guix/guix-1.0.1/guix-daemon" --disable-chroot --substitute-urls="$GUIX_BINARY_SUBSTITUTE_URL" SKIP tests/guix-describe.sh (exit status: 77)