| 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
|
| }
|
|
|