Title: [185695] trunk/LayoutTests
Revision
185695
Author
[email protected]
Date
2015-06-18 01:35:43 -0700 (Thu, 18 Jun 2015)

Log Message

[Streams API] Rejected start promise test does not timeout anymore
https://bugs.webkit.org/show_bug.cgi?id=146065

Reviewed by Darin Adler.

* streams/reference-implementation/readable-stream-expected.txt: Updated expectations to PASS.
* streams/reference-implementation/readable-stream.html: Removed timeout

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (185694 => 185695)


--- trunk/LayoutTests/ChangeLog	2015-06-18 07:02:58 UTC (rev 185694)
+++ trunk/LayoutTests/ChangeLog	2015-06-18 08:35:43 UTC (rev 185695)
@@ -1,3 +1,13 @@
+2015-06-18  Youenn Fablet <[email protected]> and Xabier Rodriguez Calvar  <[email protected]>
+
+        [Streams API] Rejected start promise test does not timeout anymore
+        https://bugs.webkit.org/show_bug.cgi?id=146065
+
+        Reviewed by Darin Adler.
+
+        * streams/reference-implementation/readable-stream-expected.txt: Updated expectations to PASS.
+        * streams/reference-implementation/readable-stream.html: Removed timeout
+
 2015-06-17  Hyungwook Lee  <[email protected]>
 
         [Win]Implement layoutTestController.dispatchPendingLoadRequests.

Modified: trunk/LayoutTests/streams/reference-implementation/readable-stream-expected.txt (185694 => 185695)


--- trunk/LayoutTests/streams/reference-implementation/readable-stream-expected.txt	2015-06-18 07:02:58 UTC (rev 185694)
+++ trunk/LayoutTests/streams/reference-implementation/readable-stream-expected.txt	2015-06-18 08:35:43 UTC (rev 185695)
@@ -9,7 +9,7 @@
 FAIL ReadableStream start controller parameter should be extensible assert_array_equals: prototype should have the right properties lengths differ, expected 5 got 4
 PASS ReadableStream should be able to call start method within prototype chain of its source 
 PASS ReadableStream start should be able to return a promise 
-TIMEOUT ReadableStream start should be able to return a promise and reject it Test timed out
+PASS ReadableStream start should be able to return a promise and reject it 
 PASS ReadableStream should be able to enqueue different objects. 
 PASS ReadableStream: if pull rejects, it should error the stream 
 PASS ReadableStream: should only call pull once upon starting the stream 

Modified: trunk/LayoutTests/streams/reference-implementation/readable-stream.html (185694 => 185695)


--- trunk/LayoutTests/streams/reference-implementation/readable-stream.html	2015-06-18 07:02:58 UTC (rev 185694)
+++ trunk/LayoutTests/streams/reference-implementation/readable-stream.html	2015-06-18 08:35:43 UTC (rev 185695)
@@ -166,7 +166,7 @@
     }));
 });
 
-var test3 = async_test('ReadableStream start should be able to return a promise and reject it', { timeout: 100 });
+var test3 = async_test('ReadableStream start should be able to return a promise and reject it');
 test3.step(function()
 {
     var theError = new Error('rejected!');
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to