Title: [208842] trunk/Tools
Revision
208842
Author
[email protected]
Date
2016-11-17 01:04:24 -0800 (Thu, 17 Nov 2016)

Log Message

[Win] run-api-tests is failing.
https://bugs.webkit.org/show_bug.cgi?id=164818

Reviewed by Alexey Proskuryakov.

Make sure Visual Studio interprets string literal as utf8.

* TestWebKitAPI/Tests/WebCore/URLParser.cpp:
(TestWebKitAPI::TEST_F):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (208841 => 208842)


--- trunk/Tools/ChangeLog	2016-11-17 08:48:34 UTC (rev 208841)
+++ trunk/Tools/ChangeLog	2016-11-17 09:04:24 UTC (rev 208842)
@@ -1,3 +1,15 @@
+2016-11-17  Per Arne Vollan  <[email protected]>
+
+        [Win] run-api-tests is failing.
+        https://bugs.webkit.org/show_bug.cgi?id=164818
+
+        Reviewed by Alexey Proskuryakov.
+
+        Make sure Visual Studio interprets string literal as utf8.
+ 
+        * TestWebKitAPI/Tests/WebCore/URLParser.cpp:
+        (TestWebKitAPI::TEST_F):
+
 2016-11-17  Yusuke Suzuki  <[email protected]>
 
         [JSC] WTF::TemporaryChange with WTF::SetForScope

Modified: trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp (208841 => 208842)


--- trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp	2016-11-17 08:48:34 UTC (rev 208841)
+++ trunk/Tools/TestWebKitAPI/Tests/WebCore/URLParser.cpp	2016-11-17 09:04:24 UTC (rev 208842)
@@ -1076,13 +1076,13 @@
     checkURL("a://A", {"a", "", "", "A", 0, "", "", "", "a://A"});
     checkURL("a://A:2", {"a", "", "", "A", 2, "", "", "", "a://A:2"});
     checkURL("a://A:2/", {"a", "", "", "A", 2, "/", "", "", "a://A:2/"});
-    checkURLDifferences("asd://ß",
+    checkURLDifferences(u8"asd://ß",
         {"asd", "", "", "%C3%83%C2%9F", 0, "", "", "", "asd://%C3%83%C2%9F"},
         {"", "", "", "", 0, "", "", "", "about:blank"}, TestTabs::No);
-    checkURLDifferences("asd://ß:4",
+    checkURLDifferences(u8"asd://ß:4",
         {"asd", "", "", "%C3%83%C2%9F", 4, "", "", "", "asd://%C3%83%C2%9F:4"},
         {"", "", "", "", 0, "", "", "", "about:blank"}, TestTabs::No);
-    checkURLDifferences("asd://ß:4/",
+    checkURLDifferences(u8"asd://ß:4/",
         {"asd", "", "", "%C3%83%C2%9F", 4, "/", "", "", "asd://%C3%83%C2%9F:4/"},
         {"", "", "", "", 0, "", "", "", "about:blank"}, TestTabs::No);
     checkURLDifferences("a://[A::b]:4",
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to