diff options
author | Brice Waegeneire <brice@waegenei.re> | 2021-07-17 19:53:53 +0200 |
---|---|---|
committer | Brice Waegeneire <brice@waegenei.re> | 2021-07-17 22:47:15 +0200 |
commit | 425e9aa4f32375d9f84a11536ca3c19588e3a7f3 (patch) | |
tree | ffee303b2b7d2b44d0e6f0a562d2d6183307ef33 /gnu/packages | |
parent | 4b8ac04e2b497340b6c6c18de4d3c376f04a0b5d (diff) | |
download | guix-425e9aa4f32375d9f84a11536ca3c19588e3a7f3.tar guix-425e9aa4f32375d9f84a11536ca3c19588e3a7f3.tar.gz |
gnu: rsnapshot: Remove modifications to tests.
Upstream fixed those tests, no need to tweak them anymore.
* gnu/packages/backup.scm (rsnapshot)[arguments]: Remove modifications
to tests done in 'check' phase.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/backup.scm | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 3db2dc1653..9ec4e281d8 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -19,6 +19,7 @@ ;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl> ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de> ;;; Copyright © 2021 Timothy Sample <samplet@ngyro.com> +;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> ;;; ;;; This file is part of GNU Guix. ;;; @@ -526,15 +527,6 @@ rdiff-backup is easy to use and settings have sensible defaults.") (modify-phases %standard-phases (replace 'check (lambda _ - (substitute* '("t/cmd-post_pre-exec/conf/pre-true-post-true.conf" - "t/backup_exec/conf/backup_exec_fail.conf" - "t/backup_exec/conf/backup_exec.conf") - (("/usr/bin/true") (which "true")) - (("/usr/bin/false") (which "false"))) - - ;; Disable a test that tries to connect to localhost on port 22. - (delete-file "t/ssh_args/ssh_args.t.in") - (invoke "make" "test")))))) (inputs `(("perl" ,perl) |