https://git.reactos.org/?p=reactos.git;a=commitdiff;h=2ffe58cf052be31dfbc7a…
commit 2ffe58cf052be31dfbc7a77e369c40914a1a3490
Author: Amine Khaldi <amine.khaldi(a)reactos.org>
AuthorDate: Sat Nov 30 14:50:34 2019 +0100
Commit: Amine Khaldi <amine.khaldi(a)reactos.org>
CommitDate: Sat Nov 30 14:50:34 2019 +0100
[SHLWAPI_WINETEST] Sync with Wine Staging 4.18. CORE-16441
---
modules/rostests/winetests/shlwapi/url.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/modules/rostests/winetests/shlwapi/url.c
b/modules/rostests/winetests/shlwapi/url.c
index 2c1f044a990..14473f624f3 100644
--- a/modules/rostests/winetests/shlwapi/url.c
+++ b/modules/rostests/winetests/shlwapi/url.c
@@ -204,11 +204,15 @@ static const TEST_URL_CANONICALIZE TEST_CANONICALIZE[] = {
{"///A/../B", URL_WININET_COMPATIBILITY, S_OK, "///B", FALSE},
{"A", 0, S_OK, "A", FALSE},
{"../A", 0, S_OK, "../A", FALSE},
- {".\\A", 0, S_OK, ".\\A", FALSE},
- {"A\\.\\B", 0, S_OK, "A\\.\\B", FALSE},
+ {"./A", 0, S_OK, "A", FALSE},
+ {"./A/./B", 0, S_OK, "A/B", FALSE},
+ {"./A", URL_DONT_SIMPLIFY, S_OK, "./A", FALSE},
+ {"A/./B", 0, S_OK, "A/B", TRUE},
{"A/../B", 0, S_OK, "B", TRUE},
{"A/../B/./../C", 0, S_OK, "C", TRUE},
{"A/../B/./../C", URL_DONT_SIMPLIFY, S_OK, "A/../B/./../C",
FALSE},
+ {".\\A", 0, S_OK, ".\\A", FALSE},
+ {"A\\.\\B", 0, S_OK, "A\\.\\B", FALSE},
{".", 0, S_OK, "/", TRUE},
{"./A", 0, S_OK, "A", TRUE},
{"A/./B", 0, S_OK, "A/B", TRUE},