# # # add_dir "tests/log_with_windows_dirsep" # # add_file "tests/log_with_windows_dirsep/__driver__.lua" # content [32be3512439786e251796f588ca4b34c607eddf2] # ============================================================ --- tests/log_with_windows_dirsep/__driver__.lua 32be3512439786e251796f588ca4b34c607eddf2 +++ tests/log_with_windows_dirsep/__driver__.lua 32be3512439786e251796f588ca4b34c607eddf2 @@ -0,0 +1,15 @@ +-- Check that log handles Windows directory separators, on Windows +-- closes bug#9269 + +skip_if(ostype~="Windows") + +mtn_setup() + +addfile("base", "base") +mkdir("foo") +addfile("foo/bar", "bar") +commit() + +check(mtn("log", "foo\\bar"), 0, false, false) + +-- end of file