Title: [235338] trunk/Tools
Revision
235338
Author
[email protected]
Date
2018-08-24 16:33:30 -0700 (Fri, 24 Aug 2018)

Log Message

Unreviewed test fix after r235249
https://bugs.webkit.org/show_bug.cgi?id=178981

* WebGPUShadingLanguageRI/Test.js:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (235337 => 235338)


--- trunk/Tools/ChangeLog	2018-08-24 23:12:28 UTC (rev 235337)
+++ trunk/Tools/ChangeLog	2018-08-24 23:33:30 UTC (rev 235338)
@@ -1,3 +1,10 @@
+2018-08-24  Myles C. Maxfield  <[email protected]>
+
+        Unreviewed test fix after r235249
+        https://bugs.webkit.org/show_bug.cgi?id=178981
+
+        * WebGPUShadingLanguageRI/Test.js:
+
 2018-08-24  Alex Christensen  <[email protected]>
 
         Introduce _WKInspector

Modified: trunk/Tools/WebGPUShadingLanguageRI/Test.js (235337 => 235338)


--- trunk/Tools/WebGPUShadingLanguageRI/Test.js	2018-08-24 23:12:28 UTC (rev 235337)
+++ trunk/Tools/WebGPUShadingLanguageRI/Test.js	2018-08-24 23:33:30 UTC (rev 235338)
@@ -220,17 +220,17 @@
             return 3 < 4 ? x : 5;
         }
     `);
-    checkInt(program, callFunction(program, "foo", [], [makeInt(program, 767)]), 5);
-    checkInt(program, callFunction(program, "foo", [], [makeInt(program, 2)]), 4);
-    checkInt(program, callFunction(program, "bar", [], [makeInt(program, 2)]), 7);
-    checkInt(program, callFunction(program, "bar", [], [makeInt(program, 8)]), 1);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 8)]), 11);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 9)]), 11);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 10)]), 14);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 11)]), 14);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 12)]), 15);
-    checkInt(program, callFunction(program, "baz", [], [makeInt(program, 13)]), 15);
-    checkInt(program, callFunction(program, "quux", [], [makeInt(program, 14)]), 14);
+    checkInt(program, callFunction(program, "foo", [makeInt(program, 767)]), 5);
+    checkInt(program, callFunction(program, "foo", [makeInt(program, 2)]), 4);
+    checkInt(program, callFunction(program, "bar", [makeInt(program, 2)]), 7);
+    checkInt(program, callFunction(program, "bar", [makeInt(program, 8)]), 1);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 8)]), 11);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 9)]), 11);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 10)]), 14);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 11)]), 14);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 12)]), 15);
+    checkInt(program, callFunction(program, "baz", [makeInt(program, 13)]), 15);
+    checkInt(program, callFunction(program, "quux", [makeInt(program, 14)]), 14);
     checkFail(
         () => doPrep(`
             int foo()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to