diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-12-21 14:26:21 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-12-21 14:28:28 +0100 |
commit | 7af6ecab6e7b703de5fc3870bc34a8c8172efc53 (patch) | |
tree | 45de76dc141f886a796fa5d65b1fe40af975cd51 | |
parent | 7aa8785c4153a87e2e5d0697ad349ebc8e3b8500 (diff) | |
download | guix-7af6ecab6e7b703de5fc3870bc34a8c8172efc53.tar guix-7af6ecab6e7b703de5fc3870bc34a8c8172efc53.tar.gz |
gnu: guix: Really skip "pivot-root" test.
This is a followup to fe9bdb581e6c4a62795f4ced6f4a5a8eab1a34e4 (which
introduced 'test-equal' for the "pivot-root" test) and to
198eac2bca075d0e71e504f1e8c46fddc62171bb (which updated the regexps for
skipped tests.)
* gnu/packages/package-management.scm (guix-0.12.0)[arguments]: In
'disable-container-tests' phase, add "test-equal" to the regexp, so that
"pivot-root" is really skipped.
-rw-r--r-- | gnu/packages/package-management.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 50db2666a7..732dbc2ce3 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -121,7 +121,7 @@ ;; XXX FIXME: These tests fail within the build container. (lambda _ (substitute* "tests/syscalls.scm" - (("^\\(test-assert \"(clone|setns|pivot-root)\"" all) + (("^\\(test-(assert|equal) \"(clone|setns|pivot-root)\"" all) (string-append "(test-skip 1)\n" all))) (substitute* "tests/containers.scm" (("^\\(test-(assert|equal)" all) |