Add test for backing up non-existing files

restic doesn't terminate in this case, this was described by @rubenv
in #90 https://github.com/restic/restic/issues/90#issuecomment-86901128
This commit is contained in:
Alexander Neumann 2015-03-28 16:09:08 +01:00
parent 4d24f2eab3
commit 8eccfc6e79
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
set -em
# setup restic
prepare
run restic init
# start backup with non existing dir
run timeout 10s restic.debug backup "${BASE}/fake-data/0/0/"{0,1,foobar,5} && debug "done" || false
cleanup