# # # add_dir "tests/ls_unknown_of_unknown_subdir" # # add_file "tests/ls_unknown_of_unknown_subdir/__driver__.lua" # content [55ac47ece4bb28da40f6780e2a7c3cbdb101ec67] # # patch "ChangeLog" # from [47b5d7333b6ffe6da62f35f8d3379180cb84b3ba] # to [76c1e4d67d0139b4275ad45e6981d24e152147ab] # # patch "testsuite.lua" # from [cd8450c491bf6b6a1a0e80de26bd35674f4e2847] # to [e35222023ddcb4005f3559cfef8b9bb6fd593dfa] # ============================================================ --- tests/ls_unknown_of_unknown_subdir/__driver__.lua 55ac47ece4bb28da40f6780e2a7c3cbdb101ec67 +++ tests/ls_unknown_of_unknown_subdir/__driver__.lua 55ac47ece4bb28da40f6780e2a7c3cbdb101ec67 @@ -0,0 +1,9 @@ +mtn_setup() + +mkdir("foo") +writefile("foo/a", "aaa") +writefile("foo/b", "bbb") + +-- this fails complaining that foo is an unknown path + +xfail_if(true, mtn("ls", "unknown", "foo"), 0) ============================================================ --- ChangeLog 47b5d7333b6ffe6da62f35f8d3379180cb84b3ba +++ ChangeLog 76c1e4d67d0139b4275ad45e6981d24e152147ab @@ -1,3 +1,8 @@ +2006-06-17 Derek Scherger + + * tests/ls_unknown_of_unknown_subdir: new xfail test + * testsuite.lua: insert in tests table + 2006-06-17 Timothy Brownawell * cmd.hh, commands.cc: Modify how command parameters description @@ -200,7 +205,7 @@ 2006-05-29 Derek Scherger - * HACKING: add note on using namespaces33 + * HACKING: add note on using namespaces * ROADMAP: remove janitorial items pertaining to namespaces and splitting commands.cc ============================================================ --- testsuite.lua cd8450c491bf6b6a1a0e80de26bd35674f4e2847 +++ testsuite.lua e35222023ddcb4005f3559cfef8b9bb6fd593dfa @@ -622,3 +622,4 @@ table.insert(tests, "automate_common_ancestors") table.insert(tests, "invalid_--root_settings") table.insert(tests, "netsync_over_pipes") +table.insert(tests, "ls_unknown_of_unknown_subdir")