# # # patch "tests/t_attr_drop.at" # from [3b91871f5b1053a99a31a89ba465a35ebb8b8aba] # to [8c55f61a0dd7cf5008f44e50bfab04d94b001f43] # # patch "tests/t_subdir_attr.at" # from [e981b395cca2814a63af714a8138b7f75f1595fc] # to [3a4b2b01e39e48f9686b4442f1b57877de30b06d] # ============================================================ --- tests/t_attr_drop.at 3b91871f5b1053a99a31a89ba465a35ebb8b8aba +++ tests/t_attr_drop.at 8c55f61a0dd7cf5008f44e50bfab04d94b001f43 @@ -5,7 +5,7 @@ ]) AT_CHECK(MONOTONE attr set testfile test:first_key first_value, [], [ignore], [ignore]) AT_CHECK(MONOTONE attr set testfile test:second_key second_value, [], [ignore], [ignore]) -AT_CHECK(MONOTONE attr get test:testfile, [], [stdout], [ignore]) +AT_CHECK(MONOTONE attr get testfile, [], [stdout], [ignore]) AT_CHECK(QGREP(test:first_key stdout)) AT_CHECK(QGREP(first_value stdout)) AT_CHECK(QGREP(test:second_key stdout)) ============================================================ --- tests/t_subdir_attr.at e981b395cca2814a63af714a8138b7f75f1595fc +++ tests/t_subdir_attr.at 3a4b2b01e39e48f9686b4442f1b57877de30b06d @@ -16,15 +16,15 @@ # set attributes in directories -AT_CHECK( (cd foo; MONOTONE attr set foodata test_attr true), [], [ignore], [ignore]) -AT_CHECK( (cd foo/bar; MONOTONE attr set bardata test_attr false), [], [ignore], [ignore]) +AT_CHECK( (cd foo; MONOTONE attr set foodata test:test_attr true), [], [ignore], [ignore]) +AT_CHECK( (cd foo/bar; MONOTONE attr set bardata test:test_attr false), [], [ignore], [ignore]) AT_CHECK(MONOTONE --branch=testbranch commit --message=blah-blah, [], [ignore], [ignore]) REV=`BASE_REVISION` # see if they're right AT_CHECK(MONOTONE checkout --revision=$REV co-dir, [], [stdout]) -AT_CHECK(grep "test_attr:foo/foodata:true" stdout, [], [ignore]) -AT_CHECK(grep "test_attr:foo/bar/bardata:false" stdout, [], [ignore]) +AT_CHECK(grep "test:test_attr:foo/foodata:true" stdout, [], [ignore]) +AT_CHECK(grep "test:test_attr:foo/bar/bardata:false" stdout, [], [ignore]) AT_CLEANUP