mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
12 lines
338 B
Bash
Executable File
12 lines
338 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 )"
|
|
|
|
python3 "${CURRENT_DIR}/run_tests.py" --variant="${BUILD_VARIANT}" --type=engine,dart,benchmarks
|
|
|
|
# This does not run the web_ui tests. To run those, use:
|
|
# lib/web_ui/dev/felt test
|