Changeset 155999 in webkit


Ignore:
Timestamp:
Sep 17, 2013 2:44:09 PM (11 years ago)
Author:
msaboff@apple.com
Message:

run-jsc-stress-tests fails with ruby version 2
https://bugs.webkit.org/show_bug.cgi?id=121521

Reviewed by Jessie Berlin.

Explicitly set LANG to en_US.UTB-8 before starting run-jsc-stress-tests.

  • Scripts/run-javascriptcore-tests:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r155979 r155999  
     12013-09-17  Michael Saboff  <msaboff@apple.com>
     2
     3        run-jsc-stress-tests fails with ruby version 2
     4        https://bugs.webkit.org/show_bug.cgi?id=121521
     5
     6        Reviewed by Jessie Berlin.
     7
     8        Explicitly set LANG to en_US.UTB-8 before starting run-jsc-stress-tests.
     9
     10        * Scripts/run-javascriptcore-tests:
     11
    1122013-09-17  Brent Fulgham  <bfulgham@apple.com>
    213
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r155498 r155999  
    239239
    240240if ($runJSCStress) {
     241    # Set LANG environment variable so the stress tests will work with newer ruby (<rdar://problem/15010705>)
     242    $ENV{LANG}="en_US.UTB-8";
    241243    my @jscStressDriverCmd = (
    242244        "/usr/bin/env", "ruby", "Tools/Scripts/run-jsc-stress-tests",
Note: See TracChangeset for help on using the changeset viewer.