Add batch flag to update script

I don't believe it helps with --use-sdk, but why not.

Review-Url: https://codereview.chromium.org/2993733002 .
This commit is contained in:
Sigmund Cherem 2017-08-04 13:41:31 -07:00
parent 97e57c0209
commit 0e2a6bdef3

View file

@ -18,14 +18,14 @@ tmp=$(mktemp -d)
function update_suite {
local suite=$1
echo "running '$suite' minified tests"
./tools/test.py -m release -c dart2js -r d8 \
./tools/test.py -m release -c dart2js -r d8 --dart2js-batch \
--use-sdk --minified --dart2js-with-kernel \
$suite > $tmp/$suite-minified.txt
$dart $update_script minified $tmp/$suite-minified.txt
echo "running '$suite' host-checked tests"
./tools/test.py -m release -c dart2js -r d8 --host-checked \
./tools/test.py -m release -c dart2js -r d8 --dart2js-batch --host-checked \
--dart2js-options="--library-root=$sdk" --dart2js-with-kernel \
$suite > $tmp/$suite-checked.txt