diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-23 16:03:34 +0100 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-12-23 16:05:13 +0100 |
commit | 2a49ddb513476cd45ebca618ffb0b9e381c1e497 (patch) | |
tree | a1b462d39637b837361c83b9476a2833dfb51286 | |
parent | 05b1f024be17786003ba7242ac34151b91740c74 (diff) |
tests: rsync: Fix it.
* gnu/tests/rsync.scm ("Test file not copied to read-only share"): This
returns the error code 1 and not 10.
-rw-r--r-- | gnu/tests/rsync.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/tests/rsync.scm b/gnu/tests/rsync.scm index 079a898cdc..ea53a157bb 100644 --- a/gnu/tests/rsync.scm +++ b/gnu/tests/rsync.scm @@ -106,7 +106,7 @@ PORT." marionette)) (test-equal "Test file not copied to read-only share" - 10 ;see "EXIT VALUES" in rsync(1) + 1 ;see "EXIT VALUES" in rsync(1) (marionette-eval '(status:exit-val (system* "rsync" "/tmp/input" |