summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/nsurl.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/nsurl.c b/test/nsurl.c
index 514f3a6af..d7faab390 100644
--- a/test/nsurl.c
+++ b/test/nsurl.c
@@ -532,6 +532,26 @@ static const struct test_compare compare_tests[] = {
"http://a/b/c/d;p?q",
NSURL_WITH_FRAGMENT,
true },
+
+ { "http://a.b.c/d?a",
+ "http://a.b.c/e?a",
+ NSURL_WITH_FRAGMENT,
+ false },
+
+ { "http://a.b.c/",
+ "http://g.h.i/",
+ NSURL_WITH_FRAGMENT,
+ false },
+
+ { "http://a.b.c/d?a",
+ "http://a.b.c/d?b",
+ NSURL_WITH_FRAGMENT,
+ false },
+
+ { "http://a.b.c/d?a",
+ "https://a.b.c/d?a",
+ NSURL_WITH_FRAGMENT,
+ false },
};
/**