# # patch "ChangeLog" # from [98bc357765ab1af7c23681fd298cc5228e7326ba] # to [18cb62c01adbe50b42f90d5b77a066507658fbcd] # # patch "tests/t_unreadable_MT.at" # from [f2ab28000f863da0a023415d2b0d13b583f6f6ca] # to [a3ed09e7bf8c01bdf42c8184a9acd1683c4a6034] # ======================================================================== --- ChangeLog 98bc357765ab1af7c23681fd298cc5228e7326ba +++ ChangeLog 18cb62c01adbe50b42f90d5b77a066507658fbcd @@ -1,5 +1,12 @@ 2005-08-26 Nathaniel Smith + * tests/t_unreadable_MT.at: This test was called "do not fail on + unreadable MT/options". I do not know why we wanted such + behavior. I am making it "fail cleanly on unreadable + MT/options". + +2005-08-26 Nathaniel Smith + * paths.cc (check_fp_normalizes_to, test_file_path_internal): Oops, there were more places testing for non-brokenness; break them too. ======================================================================== --- tests/t_unreadable_MT.at f2ab28000f863da0a023415d2b0d13b583f6f6ca +++ tests/t_unreadable_MT.at a3ed09e7bf8c01bdf42c8184a9acd1683c4a6034 @@ -1,12 +1,13 @@ # -*- Autoconf -*- -AT_SETUP([do not fail on unreadable MT/options]) +AT_SETUP([fail cleanly on unreadable MT/options]) MONOTONE_SETUP AT_CHECK(chmod a-rwx MT/) -AT_CHECK(monotone --norc, [0], [ignore], [ignore]) +AT_CHECK(monotone --norc, [1], [ignore], [ignore]) +AT_CHECK(monotone, [1], [ignore], [ignore]) AT_CHECK(chmod u+rwx MT/)