# # patch "ChangeLog" # from [fb4faf62c1ae0dc2c50ff7359f32adb4ffe44154] # to [03dae93f760ecaff338c66c0a38b007375f0a5b6] # # patch "Makefile.am" # from [8aefb7ba1e9e19ac619b8828bbcdd8106ee3e7fa] # to [807ef7c01ce9913814301bab71ce7659674fd5d2] # # patch "tests/t_rename_dir_cross_level.at" # from [11a1751be8693f71676c8c047c1a81b0d4ed2940] # to [400f1b82f0f9594a2c6592c420a9728a9b75f250] # ======================================================================== --- ChangeLog fb4faf62c1ae0dc2c50ff7359f32adb4ffe44154 +++ ChangeLog 03dae93f760ecaff338c66c0a38b007375f0a5b6 @@ -1,3 +1,13 @@ +2005-09-07 Jim Meyering + + * tests/t_rename_dir_cross_level.at: When invoking mv to rename + a directory, do not include a trailing slash on the target -- that + is not portable. + + * Makefile.am (TESTS_ENVIRONMENT): Ensure that PATH starts with + the current directory, so we test the just-built monotone binary, + not some older version. + 2005-09-08 Nathaniel Smith * monotone.texi (Certificates): Remove mention of fcerts and ======================================================================== --- Makefile.am 8aefb7ba1e9e19ac619b8828bbcdd8106ee3e7fa +++ Makefile.am 807ef7c01ce9913814301bab71ce7659674fd5d2 @@ -379,6 +379,8 @@ TESTS = unit_tests $(srcdir)/testsuite +TESTS_ENVIRONMENT=AUTOTEST_PATH="." + mostlyclean-local: rm -rf testsuite.dir testsuite.log package_full_revision_dist.txt ======================================================================== --- tests/t_rename_dir_cross_level.at 11a1751be8693f71676c8c047c1a81b0d4ed2940 +++ tests/t_rename_dir_cross_level.at 400f1b82f0f9594a2c6592c420a9728a9b75f250 @@ -50,7 +50,7 @@ REVERT_TO($BASE_R) AT_CHECK(MONOTONE rename $OLD_DIR/ $NEW_DIR/, [], [ignore], [ignore]) -AT_CHECK(mv $OLD_DIR/ $NEW_DIR/) +AT_CHECK(mv $OLD_DIR $NEW_DIR) COMMIT(testbranch) RIGHT_R=`BASE_REVISION`