Skip to content

Commit d880f4c

Browse files
author
Damir Zainullin
committed
++
1 parent 721fc2b commit d880f4c

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

biflow_aggregator/tests/test.sh

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,20 @@ run_test_with_global_timeout() {
4646
}
4747

4848
script_path="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
49+
pwd
4950
cd $script_path
51+
pwd
5052
success="true"
51-
mkdir -p outputs
53+
54+
tmpdir=$(mktemp -d)
55+
56+
trap "rm -rf \"$tmpdir\"" EXIT
57+
58+
outputs="$tmpdir/outputs"
59+
60+
mkdir -p "$outputs"
61+
62+
5263
for input in inputs/input*; do
5364
basename=$(basename "$input")
5465
echo Found $basename

0 commit comments

Comments
 (0)