commit 41806587196ab5f410de18aee2567cac7deb5d6b from: Stefan Sperling date: Thu Jul 23 14:22:41 2020 UTC fix missing 'return 1' in commit.sh test failure cases commit - 283102fc7ecc50b874240654162793c0bd07a028 commit + 41806587196ab5f410de18aee2567cac7deb5d6b blob - b0bd8dbc81e9a03e974842f00623c4174ba9cef8 blob + 2ca82b6e47ed2d8f5e0de764be0ee241eb36cba3 --- regress/cmdline/checkout.sh +++ regress/cmdline/checkout.sh @@ -628,6 +628,7 @@ function test_checkout_symlink { if [ "$ret" != "0" ]; then diff -u $testroot/stdout.expected $testroot/stdout test_done "$testroot" "$ret" + return 1 fi if [ -h $testroot/wt/dotgotfoo.link ]; then @@ -734,6 +735,7 @@ function test_checkout_symlink_relative_wtpath { if [ "$ret" != "0" ]; then diff -u $testroot/stdout.expected $testroot/stdout test_done "$testroot" "$ret" + return 1 fi if [ -h $testroot/wt/dotgotfoo.link ]; then