Changeset 179165 in webkit for trunk/Source/JavaScriptCore


Ignore:
Timestamp:
Jan 26, 2015, 9:01:08 PM (11 years ago)
Author:
Csaba Osztrogonác
Message:

[Win] Enable JSC stress tests by default
https://bugs.webkit.org/show_bug.cgi?id=128307

Reviewed by Brent Fulgham.

Source/JavaScriptCore:

  • tests/mozilla/mozilla-tests.yaml: Skipped on Windows.
  • tests/stress/ftl-arithcos.js: Skipped on Windows.

Tools:

  • Scripts/run-javascriptcore-tests:

LayoutTests:

  • js/script-tests/date-constructor.js: Skipped on Windows.
  • js/script-tests/sort-stability.js: Skipped on Windows.
Location:
trunk/Source/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r179159 r179165  
     12015-01-26  Csaba Osztrogonác  <[email protected]>
     2
     3        [Win] Enable JSC stress tests by default
     4        https://bugs.webkit.org/show_bug.cgi?id=128307
     5
     6        Reviewed by Brent Fulgham.
     7
     8        * tests/mozilla/mozilla-tests.yaml: Skipped on Windows.
     9        * tests/stress/ftl-arithcos.js: Skipped on Windows.
     10
    1112015-01-26  Ryosuke Niwa  <[email protected]>
    212
  • trunk/Source/JavaScriptCore/tests/mozilla/mozilla-tests.yaml

    r178788 r179165  
    349349  cmd: defaultRunMozillaTest :normal, "../shell.js"
    350350- path: ecma/Date/15.9.5.31-1.js
    351   cmd: defaultRunMozillaTest :normal, "../shell.js"
     351  cmd: |
     352      if ($hostOS == "windows")
     353          skip
     354      else
     355          defaultRunMozillaTest :normal, "../shell.js"
     356      end
    352357- path: ecma/Date/15.9.5.32-1.js
    353358  cmd: defaultRunMozillaTest :normal, "../shell.js"
     
    15331538  cmd: defaultRunMozillaTest :normal, "../shell.js", "shell.js"
    15341539- path: ecma_3/Date/15.9.5.6.js
    1535   cmd: defaultRunMozillaTest :normal, "../shell.js", "shell.js"
     1540  cmd: |
     1541      if ($hostOS == "windows")
     1542          skip
     1543      else
     1544          defaultRunMozillaTest :normal, "../shell.js"
     1545      end
    15361546- path: ecma_3/Date/15.9.5.7.js
    15371547  cmd: defaultRunMozillaTest :skip, "../shell.js", "shell.js"
  • trunk/Source/JavaScriptCore/tests/stress/ftl-arithcos.js

    r163027 r179165  
     1//@ skip if $hostOS == "windows"
     2
    13function foo(x) {
    24    return Math.cos(x);
Note: See TracChangeset for help on using the changeset viewer.