mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* add supported luci builders * fix license * add readme * add code to validate json contents * license * move dev to ci * fix license * add shell script to run test
20 lines
465 B
Bash
20 lines
465 B
Bash
#!/bin/bash
|
|
# Copyright 2020 The Flutter Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
# Runner for dart tests. It expects a single parameter with the full
|
|
# path to the start folder where tests will be run.
|
|
|
|
set -e
|
|
|
|
dir=$(dirname $0)
|
|
|
|
pushd $dir > /dev/null
|
|
dart validate_json.dart engine_try_builders.json
|
|
dart validate_json.dart engine_prod_builders.json
|
|
|
|
popd > /dev/null
|
|
|
|
|