mirror of
https://github.com/octoleo/restic.git
synced 2024-11-12 00:06:35 +00:00
13 lines
243 B
Bash
Executable File
13 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# tempdir for binaries
|
|
export BASEDIR="$(mktemp --tmpdir --directory restic-testsuite-XXXXXX)"
|
|
export DEBUG_LOG="${BASEDIR}/restic.log"
|
|
|
|
export TZ=UTC
|
|
|
|
echo "restic testsuite basedir ${BASEDIR}"
|
|
|
|
# run tests
|
|
testsuite/run.sh "$@"
|