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

Unified Diff: test/run.sh

Issue 111893006: Switch web_ui to use path 1.0.0 (Closed) Base URL: git@github.com:dart-lang/web-ui.git@master
Patch Set: Created 7 years 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 | « test/paths_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/run.sh
diff --git a/test/run.sh b/test/run.sh
index d4f0048ee5504098df98e5cf40f00f810f2e5dd5..cb10a412753c8569d94ee42b6ed9b57fe2726916 100755
--- a/test/run.sh
+++ b/test/run.sh
@@ -31,10 +31,12 @@ function show_diff {
}
function update {
- read -p "Would you like to update the expectations? [y/N]: " answer
+ read -p "Would you like to update the expectations? [y/N/s] (yes, No, skip this one): " answer
if [[ $answer == 'y' || $answer == 'Y' ]]; then
cp $2 $1
return 0
+ elif [[ $answer == 's' ]]; then
+ return 0
fi
return 1
}
« no previous file with comments | « test/paths_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698