Title: [235415] trunk/LayoutTests
Revision
235415
Author
sihui_...@apple.com
Date
2018-08-27 17:35:26 -0700 (Mon, 27 Aug 2018)

Log Message

[ MacOS iOS ] Layout Test storage/indexeddb/modern/opendatabase-after-storage-crash.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=187648
<rdar://problem/42405935>

Add an early exit so test does not call waitUntilDone after test ends.

Reviewed by Ryosuke Niwa.

* platform/wk2/TestExpectations:
* storage/indexeddb/modern/opendatabase-after-storage-crash.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (235414 => 235415)


--- trunk/LayoutTests/ChangeLog	2018-08-28 00:28:50 UTC (rev 235414)
+++ trunk/LayoutTests/ChangeLog	2018-08-28 00:35:26 UTC (rev 235415)
@@ -1,3 +1,16 @@
+2018-08-27  Sihui Liu  <sihui_...@apple.com>
+
+        [ MacOS iOS ] Layout Test storage/indexeddb/modern/opendatabase-after-storage-crash.html is flaky
+        https://bugs.webkit.org/show_bug.cgi?id=187648
+        <rdar://problem/42405935>
+
+        Add an early exit so test does not call waitUntilDone after test ends.
+
+        Reviewed by Ryosuke Niwa.
+
+        * platform/wk2/TestExpectations:
+        * storage/indexeddb/modern/opendatabase-after-storage-crash.html:
+
 2018-08-27  Youenn Fablet  <you...@apple.com>
 
         Various IndexDB tests abandon documents

Modified: trunk/LayoutTests/platform/wk2/TestExpectations (235414 => 235415)


--- trunk/LayoutTests/platform/wk2/TestExpectations	2018-08-28 00:28:50 UTC (rev 235414)
+++ trunk/LayoutTests/platform/wk2/TestExpectations	2018-08-28 00:35:26 UTC (rev 235415)
@@ -738,7 +738,7 @@
 http/wpt/cross-origin-resource-policy/ [ Pass ]
 
 http/tests/navigation/useragent-reload.php [ Pass ]
-webkit.org/b/187931 storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Skip ]
+storage/indexeddb/modern/opendatabase-after-storage-crash.html [ Pass ]
 
 ### END OF (5) Progressions, expected successes that are expected failures in WebKit1.
 ########################################

Modified: trunk/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html (235414 => 235415)


--- trunk/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html	2018-08-28 00:28:50 UTC (rev 235414)
+++ trunk/LayoutTests/storage/indexeddb/modern/opendatabase-after-storage-crash.html	2018-08-28 00:35:26 UTC (rev 235415)
@@ -46,10 +46,12 @@
 		document.body.innerHTML = "Successfully opened database with version " + versionToOpen + ".";
 		shouldBeEqualToString('sessionStorage[storageKey]', 'Made it');
 
-		if (window.testRunner)
+		if (window.testRunner) {
 			testRunner.notifyDone();
+			return;
+		}
 	}
-	
+
 	sessionStorage.doneFirstLoad = true;
 
 	// Set an error handler on the database connection so once the storage process terminates we know to continue the test
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to