⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 271285 in webkit


Ignore:
Timestamp:
Jan 7, 2021, 9:30:41 PM (6 years ago)
Author:
Paulo Matos
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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r271278 r271285  
     12021-01-07  Paulo Matos  <pmatos@igalia.com>
     2
     3        Fix mktemp call for busybox mktemp
     4        https://bugs.webkit.org/show_bug.cgi?id=220422
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Busybox mktemp requires the template to have 6 Xs.
     9        GNU mktemp doesn't care so use 6 Xs in order to ensure this will work if busybox mktemp is installed.
     10
     11        * Scripts/run-jsc-stress-tests:
     12
    1132021-01-07  Jonathan Bedard  <jbedard@apple.com>
    214
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r271179 r271285  
    752752        fileTemplate = "bytecode-cache"
    753753    elsif ($hostOS == "linux" && $architecture != "mips")
    754         fileTemplate = "bytecode-cacheXXX"
     754        fileTemplate = "bytecode-cacheXXXXXX"
    755755    else
    756756        skip
Note: See TracChangeset for help on using the changeset viewer.