Files

9 lines
250 B
Bash
Raw Permalink Normal View History

#!/bin/bash
2018-10-05 11:56:13 -07:00
set -o pipefail -e;
BUILD_VARIANT="${1:-host_debug_unopt}"
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
2019-03-27 18:09:08 -07:00
2019-12-02 16:38:03 -08:00
python "${CURRENT_DIR}/run_tests.py" --variant="${BUILD_VARIANT}" --type=engine,dart,benchmarks