# # patch "ChangeLog" # from [3bdac190035a45f3e913a1a04e2015c86e3dff20] # to [90b1974ed520ba171cc853d60fbde8f41f868f33] # # patch "tests/t_update_1.at" # from [c41d32257a01dfd29b7d61e8cb2501fb1d4365e2] # to [a8ec618111f576a24bd3f1b21ac6d1051aa13647] # # patch "tests/t_update_2.at" # from [0e5efd637564a24adde61d3ea06ede12eb48cd6d] # to [3d8bbfbedd3078a69e860b05270b0a08e5f9a105] # ======================================================================== --- ChangeLog 3bdac190035a45f3e913a1a04e2015c86e3dff20 +++ ChangeLog 90b1974ed520ba171cc853d60fbde8f41f868f33 @@ -1,8 +1,9 @@ 2005-11-27 Julio M. Merino Vidal * testsuite.at, tests/t_empty_env.at, tests/t_i18n_file.at, - tests/t_netsync_sigpipe.at: Do not use shell if's == operator - because it is not portable; use = instead. + 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 = + instead. 2005-11-27 Julio M. Merino Vidal ======================================================================== --- tests/t_update_1.at c41d32257a01dfd29b7d61e8cb2501fb1d4365e2 +++ tests/t_update_1.at a8ec618111f576a24bd3f1b21ac6d1051aa13647 @@ -19,7 +19,7 @@ # Put in an explicit --branch, because REVERT_TO is not smart about # such things. AT_CHECK(MONOTONE --branch=a update, [], [ignore], [ignore]) -AT_CHECK(test $A1_SHA == `BASE_REVISION`) +AT_CHECK(test $A1_SHA = `BASE_REVISION`) AT_CHECK(MONOTONE propagate b a, [], [ignore], [ignore]) @@ -27,6 +27,6 @@ # Put in an explicit --branch, because REVERT_TO is not smart about # such things. AT_CHECK(MONOTONE --branch=a update, [], [ignore], [ignore]) -AT_CHECK(test $B1_SHA == `BASE_REVISION`) +AT_CHECK(test $B1_SHA = `BASE_REVISION`) AT_CLEANUP ======================================================================== --- tests/t_update_2.at 0e5efd637564a24adde61d3ea06ede12eb48cd6d +++ tests/t_update_2.at 3d8bbfbedd3078a69e860b05270b0a08e5f9a105 @@ -27,6 +27,6 @@ GOT_R=`BASE_REVISION` AT_CHECK(test $GOT_R != $A1_R) -AT_CHECK(test $GOT_R == $A2_R) +AT_CHECK(test $GOT_R = $A2_R) AT_CLEANUP