mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
9 lines
250 B
Bash
Executable File
9 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o pipefail -e;
|
|
|
|
BUILD_VARIANT="${1:-host_debug_unopt}"
|
|
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
python "${CURRENT_DIR}/run_tests.py" --variant="${BUILD_VARIANT}" --type=engine,dart,benchmarks
|