Made local perf testing the default.

This commit is contained in:
Alan Jeffrey 2016-09-05 08:43:03 -05:00
parent bc07d99391
commit 105b11ffcd

View file

@ -17,8 +17,8 @@ case "${1}" in
--gecko) --gecko)
engine="--engine gecko" engine="--engine gecko"
;; ;;
--local) --submit)
local=1 submit=1
;; ;;
*) *)
echo "Unknown option ${1}." echo "Unknown option ${1}."
@ -45,7 +45,7 @@ PERF_FILE="output/perf-$(date --iso-8601=seconds).json"
echo "Running tests" echo "Running tests"
python3 runner.py ${engine} --runs 3 "${MANIFEST}" "${PERF_FILE}" python3 runner.py ${engine} --runs 3 "${MANIFEST}" "${PERF_FILE}"
if [[ -z "${local:-}" ]]; if [[ "${submit:-}" ]];
then then
echo "Submitting to Perfherder" echo "Submitting to Perfherder"
# Perfherder SSL check will fail if time is not accurate, # Perfherder SSL check will fail if time is not accurate,