Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(962)

Unified Diff: pkg/compiler/tool/status_files/update_all.sh

Issue 2993733002: Add batch flag to update script (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/tool/status_files/update_all.sh
diff --git a/pkg/compiler/tool/status_files/update_all.sh b/pkg/compiler/tool/status_files/update_all.sh
index dce652886055eac27007a03394af55c05b47ac0d..be7706151b740d0c620d18239648d9522f6d8a97 100755
--- a/pkg/compiler/tool/status_files/update_all.sh
+++ b/pkg/compiler/tool/status_files/update_all.sh
@@ -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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698