Changeset 179165 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Jan 26, 2015, 9:01:08 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r179159 r179165 1 2015-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 1 11 2015-01-26 Ryosuke Niwa <[email protected]> 2 12 -
trunk/Source/JavaScriptCore/tests/mozilla/mozilla-tests.yaml
r178788 r179165 349 349 cmd: defaultRunMozillaTest :normal, "../shell.js" 350 350 - 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 352 357 - path: ecma/Date/15.9.5.32-1.js 353 358 cmd: defaultRunMozillaTest :normal, "../shell.js" … … 1533 1538 cmd: defaultRunMozillaTest :normal, "../shell.js", "shell.js" 1534 1539 - 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 1536 1546 - path: ecma_3/Date/15.9.5.7.js 1537 1547 cmd: defaultRunMozillaTest :skip, "../shell.js", "shell.js" -
trunk/Source/JavaScriptCore/tests/stress/ftl-arithcos.js
r163027 r179165 1 //@ skip if $hostOS == "windows" 2 1 3 function foo(x) { 2 4 return Math.cos(x);
Note:
See TracChangeset
for help on using the changeset viewer.