Changeset 155385 in webkit
- Timestamp:
- Sep 9, 2013, 2:47:23 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
LayoutTests/fast/js/script-tests/dfg-exception.js (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/Scripts/run-jsc-stress-tests (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/fast/js/script-tests/dfg-exception.js
r103294 r155385 75 75 }; 76 76 77 noInline(test); 78 noInline(doesntDFGCompile); 79 77 80 // warmup the test method 78 for (i = 0; i < 200; ++i)81 while (!dfgCompiled({f:test})) 79 82 test(doesntDFGCompile); 80 83 -
trunk/Tools/ChangeLog
r155383 r155385 1 2013-09-09 Filip Pizlo <fpizlo@apple.com> 2 3 Unreviewed, fix Ruby exception handling. 4 5 * Scripts/run-jsc-stress-tests: 6 1 7 2013-09-09 Filip Pizlo <fpizlo@apple.com> 2 8 -
trunk/Tools/Scripts/run-jsc-stress-tests
r155383 r155385 40 40 require 'shellwords' 41 41 $haveShellwords = true 42 rescue => e42 rescue Exception => e 43 43 $stderr.puts "Warning: did not find shellwords; some features will be disabled." 44 44 $stderr.puts "Error: #{e.inspect}" … … 51 51 require 'highline' 52 52 $canRunDisplayProfilerOutput = true 53 rescue => e53 rescue Exception => e 54 54 $stderr.puts "Warning: did not find json or highline; some features will be disabled." 55 55 $stderr.puts "Error: #{e.inspect}" … … 199 199 addRunCommand("profiler", ["ruby", (HELPERS_PATH + "profiler-test-helper").to_s, (SCRIPTS_PATH + "display-profiler-output").to_s, profilerOutput.to_s, $jscPath.to_s, "-p", profilerOutput.to_s, $benchmark.to_s]) 200 200 else 201 puts "Running simple version of #{$collectionName}/#{$benchmark} because some required Ruby features are unavailable." 201 202 run("profiler-simple", "-p", profilerOutput.to_s) 202 203 end
Note:
See TracChangeset
for help on using the changeset viewer.