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

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

Issue 2990303002: Update status files to make bots green, minor changes to the 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 | tests/corelib/corelib.status » ('j') | 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 be7706151b740d0c620d18239648d9522f6d8a97..5f467beeaf5a93aedafe206d23f920b160be2a15 100755
--- a/pkg/compiler/tool/status_files/update_all.sh
+++ b/pkg/compiler/tool/status_files/update_all.sh
@@ -6,8 +6,6 @@
# Script to update the dart2js status lines for all tests running with the
# $dart2js_with_kernel test configuration.
-set -e
-
repodir=$(cd $(dirname ${BASH_SOURCE[0]})/../../../../; pwd)
dart="out/ReleaseX64/dart"
update_script=$(dirname ${BASH_SOURCE[0]})/update_from_log.dart
@@ -22,6 +20,7 @@ function update_suite {
--use-sdk --minified --dart2js-with-kernel \
$suite > $tmp/$suite-minified.txt
+ echo "processing '$suite' minified tests status changes"
$dart $update_script minified $tmp/$suite-minified.txt
echo "running '$suite' host-checked tests"
@@ -29,6 +28,7 @@ function update_suite {
--dart2js-options="--library-root=$sdk" --dart2js-with-kernel \
$suite > $tmp/$suite-checked.txt
+ echo "processing '$suite' checked tests status changes"
$dart $update_script checked $tmp/$suite-checked.txt
}
« no previous file with comments | « no previous file | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698