Reviewers: Michael Achenbach,
Message:
The old timestamp was built with the assumption in mind that the fuzzer runs
once a day. This no longer holds and the time stamp needs a finer
granularity.
Description:
Make timestamp of fuzz harness archives finer grained.
[email protected]
Please review this at https://codereview.chromium.org/329303004/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files (+1, -1 lines):
M tools/fuzz-harness.sh
Index: tools/fuzz-harness.sh
diff --git a/tools/fuzz-harness.sh b/tools/fuzz-harness.sh
index
efbf8646cee0e67b1f8c50a55f211767a91341aa..cef59868a936a266d3b3fd3c6cf351247997c88e
100755
--- a/tools/fuzz-harness.sh
+++ b/tools/fuzz-harness.sh
@@ -85,7 +85,7 @@ 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).tar.bz2 err-* w*
+tar -cjf fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 err-* w*
rm -f err-* w*
echo "Total failures: $exit_code"
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.