7cb01cb2a6
this is a follow up to reverted https://github.com/dart-lang/dev_compiler/pull/114 it relands it so it can pass on travis, with some additional tweaks to names The new structure is: tool/ presubmit.sh # both build and test build_sdk.sh test.sh coverage.sh test/test.sh # deprecated, with a warning message Thoughts? R=sigmund@google.com Review URL: https://codereview.chromium.org/1042863004
6 lines
85 B
Bash
Executable File
6 lines
85 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
DIR=$(dirname "${BASH_SOURCE[0]}")
|
|
$DIR/build_sdk.sh
|
|
$DIR/test.sh
|