[glib: 7/8] GLib test: Adjust to follow the implementation
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib: 7/8] GLib test: Adjust to follow the implementation
- Date: Wed, 13 Feb 2019 10:40:57 +0000 (UTC)
commit 1e74b5872e555ee1aee6fa623d200ebb9654d62d
Author: Руслан Ижбулатов <lrn1986 gmail com>
Date: Fri Feb 8 20:59:23 2019 +0000
GLib test: Adjust to follow the implementation
Canonicalization converts slashes to backslashes on Windows (most
of the time). This is a horrible design decision, but that's what
it does, and it's too late to change that. The test shouldn't expect
anything else.
tests/testglib.c | 22 +++++++++++++++++++---
1 file changed, 19 insertions(+), 3 deletions(-)
---
diff --git a/tests/testglib.c b/tests/testglib.c
index f29bbc664..687fadd5b 100644
--- a/tests/testglib.c
+++ b/tests/testglib.c
@@ -843,6 +843,7 @@ test_paths (void)
gchar *relative_path;
gchar *canonical_path;
} canonicalize_filename_checks[] = {
+#ifndef G_OS_WIN32
{ "/etc", "../usr/share", "/usr/share" },
{ "/", "/foo/bar", "/foo/bar" },
{ "/usr/bin", "../../foo/bar", "/foo/bar" },
@@ -857,7 +858,22 @@ test_paths (void)
{ "///triple/slash", ".", "/triple/slash" },
{ "//double/slash", ".", "//double/slash" },
{ "/cwd/../with/./complexities/", "./hello", "/with/complexities/hello" },
-#ifdef G_OS_WIN32
+#else
+ { "/etc", "../usr/share", "\\usr\\share" },
+ { "/", "/foo/bar", "\\foo\\bar" },
+ { "/usr/bin", "../../foo/bar", "\\foo\\bar" },
+ { "/", "../../foo/bar", "\\foo\\bar" },
+ { "/double//dash", "../../foo/bar", "\\foo\\bar" },
+ { "/usr/share/foo", ".././././bar", "\\usr\\share\\bar" },
+ { "/foo/bar", "../bar/./.././bar", "\\foo\\bar" },
+ { "/test///dir", "../../././foo/bar", "\\foo\\bar" },
+ { "/test///dir", "../../././/foo///bar", "\\foo\\bar" },
+ { "/etc", "///triple/slash", "\\triple\\slash" },
+ { "/etc", "//double/slash", "//double/slash" },
+ { "///triple/slash", ".", "\\triple\\slash" },
+ { "//double/slash", ".", "//double/slash\\" },
+ { "/cwd/../with/./complexities/", "./hello", "\\with\\complexities\\hello" },
+
{ "\\etc", "..\\usr\\share", "\\usr\\share" },
{ "\\", "\\foo\\bar", "\\foo\\bar" },
{ "\\usr\\bin", "..\\..\\foo\\bar", "\\foo\\bar" },
@@ -870,8 +886,8 @@ test_paths (void)
{ "\\etc", "\\\\\\triple\\slash", "\\triple\\slash" },
{ "\\etc", "\\\\double\\slash", "\\\\double\\slash" },
{ "\\\\\\triple\\slash", ".", "\\triple\\slash" },
- { "\\\\double\\slash", ".", "\\\\double\\slash" },
- { "\\cwd\\..\\with\\.\\complexities\\", ".\\hello", "\\cwd\\with\\complexities\\hello" },
+ { "\\\\double\\slash", ".", "\\\\double\\slash\\" },
+ { "\\cwd\\..\\with\\.\\complexities\\", ".\\hello", "\\with\\complexities\\hello" },
#endif
};
const guint n_canonicalize_filename_checks = G_N_ELEMENTS (canonicalize_filename_checks);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]