Changeset 157131 in webkit


Ignore:
Timestamp:
Oct 8, 2013 1:26:34 PM (11 years ago)
Author:
mark.lam@apple.com
Message:

Fix ruby LoadError when running run-javascriptcore-tests.
https://bugs.webkit.org/show_bug.cgi?id=122519.

Reviewed by Mark Hahnenberg.

The scripts needed to explicitly require 'rubygems' for older versions of ruby
(versions before 1.9).

  • Scripts/jsc-stress-test-helpers/profiler-test-helper:
  • Scripts/run-jsc-stress-tests:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r157122 r157131  
     12013-10-08  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix ruby LoadError when running run-javascriptcore-tests.
     4        https://bugs.webkit.org/show_bug.cgi?id=122519.
     5
     6        Reviewed by Mark Hahnenberg.
     7
     8        The scripts needed to explicitly require 'rubygems' for older versions of ruby
     9        (versions before 1.9).
     10
     11        * Scripts/jsc-stress-test-helpers/profiler-test-helper:
     12        * Scripts/run-jsc-stress-tests:
     13
    1142013-10-08  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    215
  • trunk/Tools/Scripts/jsc-stress-test-helpers/profiler-test-helper

    r155383 r157131  
    2424# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2525
     26require 'rubygems'
    2627require 'json'
    2728require 'shellwords'
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r157084 r157131  
    4949
    5050begin
     51    require 'rubygems'
    5152    require 'json'
    5253    require 'highline'
Note: See TracChangeset for help on using the changeset viewer.