Skip to content

Commit 59f6cd6

Browse files
authored
Fixes #357: Delete directory "testoutput" if it exists prior to the extended test suite. (#359)
1 parent 37f51dc commit 59f6cd6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/scripts/all_tests.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#!/usr/bin/env bash
22
set -eEuo pipefail
33

4+
if [ -d "./testoutput" ]; then rm -Rf ./testoutput; fi
5+
46
BASEDIR=./tests/scripts
57

68
sh ${BASEDIR}/tiff_cubing.sh
@@ -20,4 +22,4 @@ sh ${BASEDIR}/in_memory_downsampled_cubing.sh
2022
sh ${BASEDIR}/in_place_compression.sh
2123
sh ${BASEDIR}/simple_anisotropic_tiff_cubing.sh
2224

23-
rm -r testdata/tiff_mag_2_reference/
25+
rm -r testdata/tiff_mag_2_reference/

0 commit comments

Comments
 (0)