Add test case described in ticket #4611. Behavior checked against the TS, and is working as specified. Closed the ticket as "wontfix", since there is no implementation defect.
This commit is contained in:
parent
9fd93a2008
commit
f17852e98d
@ -1567,14 +1567,15 @@ namespace
|
||||
PATH_TEST_EQ(path("foo/") / "bar", "foo/bar");
|
||||
append_test_aux("foo/", "bar", "foo/bar");
|
||||
|
||||
PATH_TEST_EQ(path("foo/") / "/bar", "foo//bar");
|
||||
append_test_aux("foo/", "/bar", "foo//bar");
|
||||
|
||||
if (platform == "Windows")
|
||||
{
|
||||
PATH_TEST_EQ(path("foo") / "bar", "foo\\bar");
|
||||
append_test_aux("foo", "bar", "foo\\bar");
|
||||
|
||||
PATH_TEST_EQ(path("foo\\") / "\\bar", "foo\\\\bar");
|
||||
append_test_aux("foo\\", "\\bar", "foo\\\\bar");
|
||||
|
||||
// hand created test case specific to Windows
|
||||
PATH_TEST_EQ(path("c:") / "bar", "c:bar");
|
||||
append_test_aux("c:", "bar", "c:bar");
|
||||
|
Loading…
Reference in New Issue
Block a user