summaryrefslogtreecommitdiff
path: root/deps/v8/tools/fuzz-harness.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/fuzz-harness.sh')
-rwxr-xr-xdeps/v8/tools/fuzz-harness.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/tools/fuzz-harness.sh b/deps/v8/tools/fuzz-harness.sh
index cef59868a9..31023de3ab 100755
--- a/deps/v8/tools/fuzz-harness.sh
+++ b/deps/v8/tools/fuzz-harness.sh
@@ -85,7 +85,9 @@ python -u "$jsfunfuzz_dir/jsfunfuzz/multi_timed_run.py" 300 \
"$d8" $flags "$jsfunfuzz_dir/jsfunfuzz/jsfunfuzz.js"
exit_code=$(cat w* | grep " looking good" -c)
exit_code=$((100-exit_code))
-tar -cjf fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 err-* w*
+archive=fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2
+echo "Creating archive $archive"
+tar -cjf $archive err-* w*
rm -f err-* w*
echo "Total failures: $exit_code"