# # patch "ChangeLog" # from [90b1974ed520ba171cc853d60fbde8f41f868f33] # to [716fcc7059a8d468cc55e692c9b1f8ef6ca83e19] # # patch "tests/t_checkout_options.at" # from [284cbcd4e896cb06bbc46ff4f72339aab6905c8b] # to [e935f26986b7143bfe07dbee0ecd7a613017d008] # ======================================================================== --- ChangeLog 90b1974ed520ba171cc853d60fbde8f41f868f33 +++ ChangeLog 716fcc7059a8d468cc55e692c9b1f8ef6ca83e19 @@ -1,5 +1,11 @@ 2005-11-27 Julio M. Merino Vidal + * tests/t_checkout_options.at: Use the [] operator instead of {} in + a shell pattern so that it works with interpreters other than bash + (e.g., NetBSD's sh). + +2005-11-27 Julio M. Merino Vidal + * testsuite.at, tests/t_empty_env.at, tests/t_i18n_file.at, tests/t_netsync_sigpipe.at, tests/t_update_1.at, tests/t_update_2.at: Do not use test's == operator because it is not portable; use = ======================================================================== --- tests/t_checkout_options.at 284cbcd4e896cb06bbc46ff4f72339aab6905c8b +++ tests/t_checkout_options.at e935f26986b7143bfe07dbee0ecd7a613017d008 @@ -27,7 +27,7 @@ AT_CHECK(RAW_MONOTONE --branch=foobar checkout --revision=$REV test_dir10, [], [ignore], [ignore]) -for DIR in test_dir{1,2,3,4,5,6,7,8}; do +for DIR in test_dir@<:@12345678@:>@; do AT_CHECK(echo DIR=$DIR, [], [ignore]) AT_CHECK(test -f $DIR/MT/options) AT_CHECK(QGREP(test.db $DIR/MT/options))