Changeset 160048 in webkit


Ignore:
Timestamp:
Dec 3, 2013 3:20:08 PM (10 years ago)
Author:
commit-queue@webkit.org
Message:

[Win] run-jsc-stress-tests has a great number of failures (2026/7606) on Windows
https://bugs.webkit.org/show_bug.cgi?id=125111

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-12-03
Reviewed by Filip Pizlo.

Almost all errors seem to be caused by differences in line ending when diffing test output with expected output.

  • Scripts/run-javascriptcore-tests: Enable api test and stress test for WinCairo.
  • Scripts/run-jsc-stress-tests: Ignore carriage return when diffing test output with expected output.
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r160043 r160048  
     12013-12-03  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [Win] run-jsc-stress-tests has a great number of failures (2026/7606) on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=125111
     5
     6        Reviewed by Filip Pizlo.
     7
     8        Almost all errors seem to be caused by differences in line ending when diffing test output with expected output.
     9
     10        * Scripts/run-javascriptcore-tests: Enable api test and stress test for WinCairo.
     11        * Scripts/run-jsc-stress-tests: Ignore carriage return when diffing test output with expected output.
     12
    1132013-12-03  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/Tools/Scripts/run-javascriptcore-tests

    r159955 r160048  
    7070my $buildJSC = 1;
    7171
    72 my $runTestAPI = isAppleMacWebKit() || isAppleWinWebKit();
     72my $runTestAPI = isAppleMacWebKit() || isAppleWinWebKit() || isWinCairo();
    7373
    7474my $runMozilla = 0;
     
    7676# FIXME: run-jsc-stress-tests should be ported to other platforms.
    7777# https://bugs.webkit.org/show_bug.cgi?id=120809
    78 my $runJSCStress = !isAppleWinWebKit() && !isWinCairo();
     78my $runJSCStress = !isAppleWinWebKit();
    7979
    8080my $enableFTL = 0;
  • trunk/Tools/Scripts/run-jsc-stress-tests

    r160016 r160048  
    276276        outp.puts "elif test -e ../#{Shellwords.shellescape(expectedFilename)}"
    277277        outp.puts "then"
    278         outp.puts "    diff -u ../#{Shellwords.shellescape(expectedFilename)} #{outputFilename} > #{diffFilename}"
     278        outp.puts "    diff --strip-trailing-cr -u ../#{Shellwords.shellescape(expectedFilename)} #{outputFilename} > #{diffFilename}"
    279279        outp.puts "    if [ $? -eq 0 ]"
    280280        outp.puts "    then"
Note: See TracChangeset for help on using the changeset viewer.