Title: [272323] trunk/Tools
Revision
272323
Author
[email protected]
Date
2021-02-03 09:44:43 -0800 (Wed, 03 Feb 2021)

Log Message

Flaky API Test: TestWebKitAPI.WebKitLegacy.CrossPartitionFileSchemeAccess
https://bugs.webkit.org/show_bug.cgi?id=206956

Reviewed by Alexey Proskuryakov.

createPartition is timing out on the bots but not locally.
Don't hide the output of hdiutil so we can see what is happening on the bots.

* TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm:
(createPartition):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (272322 => 272323)


--- trunk/Tools/ChangeLog	2021-02-03 17:38:54 UTC (rev 272322)
+++ trunk/Tools/ChangeLog	2021-02-03 17:44:43 UTC (rev 272323)
@@ -1,3 +1,16 @@
+2021-02-03  Alex Christensen  <[email protected]>
+
+        Flaky API Test: TestWebKitAPI.WebKitLegacy.CrossPartitionFileSchemeAccess
+        https://bugs.webkit.org/show_bug.cgi?id=206956
+
+        Reviewed by Alexey Proskuryakov.
+
+        createPartition is timing out on the bots but not locally.
+        Don't hide the output of hdiutil so we can see what is happening on the bots.
+
+        * TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm:
+        (createPartition):
+
 2021-02-03  Ryan Haddad  <[email protected]>
 
         Replace Apple-Catalina-Release-JSC-Tests bot due to hardware failure

Modified: trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm (272322 => 272323)


--- trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm	2021-02-03 17:38:54 UTC (rev 272322)
+++ trunk/Tools/TestWebKitAPI/Tests/mac/CrossPartitionFileSchemeAccess.mm	2021-02-03 17:44:43 UTC (rev 272323)
@@ -59,8 +59,8 @@
     const char* targetFile = "resources/CrossPartitionFileSchemeAccess.html";
     
     const char* createDirCmd  = "mkdir resources";
-    const char* createDiskImage = "hdiutil create otherVolume.dmg -srcfolder resources/ -ov > /dev/null";
-    const char* attachDiskImage = "hdiutil attach otherVolume.dmg > /dev/null";
+    const char* createDiskImage = "hdiutil create otherVolume.dmg -srcfolder resources/ -ov";
+    const char* attachDiskImage = "hdiutil attach otherVolume.dmg";
     
     std::string createFileCmd = "echo ";
     createFileCmd.append(fileContent);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to