Title: [271285] trunk/Tools
Revision
271285
Author
[email protected]
Date
2021-01-07 21:30:41 -0800 (Thu, 07 Jan 2021)

Log Message

Fix mktemp call for busybox mktemp
https://bugs.webkit.org/show_bug.cgi?id=220422

Reviewed by Alexey Proskuryakov.

Busybox mktemp requires the template to have 6 Xs.
GNU mktemp doesn't care so use 6 Xs in order to ensure this will work if busybox mktemp is installed.

* Scripts/run-jsc-stress-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (271284 => 271285)


--- trunk/Tools/ChangeLog	2021-01-08 04:38:05 UTC (rev 271284)
+++ trunk/Tools/ChangeLog	2021-01-08 05:30:41 UTC (rev 271285)
@@ -1,3 +1,15 @@
+2021-01-07  Paulo Matos  <[email protected]>
+
+        Fix mktemp call for busybox mktemp
+        https://bugs.webkit.org/show_bug.cgi?id=220422
+
+        Reviewed by Alexey Proskuryakov.
+
+        Busybox mktemp requires the template to have 6 Xs.
+        GNU mktemp doesn't care so use 6 Xs in order to ensure this will work if busybox mktemp is installed.
+
+        * Scripts/run-jsc-stress-tests:
+
 2021-01-07  Jonathan Bedard  <[email protected]>
 
         [webkitscmpy] Split program into separate files (Follow-up fix)

Modified: trunk/Tools/Scripts/run-jsc-stress-tests (271284 => 271285)


--- trunk/Tools/Scripts/run-jsc-stress-tests	2021-01-08 04:38:05 UTC (rev 271284)
+++ trunk/Tools/Scripts/run-jsc-stress-tests	2021-01-08 05:30:41 UTC (rev 271285)
@@ -751,7 +751,7 @@
     if ($hostOS == "darwin")
         fileTemplate = "bytecode-cache"
     elsif ($hostOS == "linux" && $architecture != "mips")
-        fileTemplate = "bytecode-cacheXXX"
+        fileTemplate = "bytecode-cacheXXXXXX"
     else
         skip
         return
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to