Commit fac9e220 authored by machenbach's avatar machenbach Committed by Commit bot

[test] Make fuzzer output the archive file name for easy upload.

NOTRY=true

Review URL: https://codereview.chromium.org/1365083002

Cr-Commit-Position: refs/heads/master@{#30917}
parent da9c42dd
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment