Changeset 179930 in webkit
- Timestamp:
- Feb 11, 2015, 9:10:01 AM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/run-jsc-stress-tests (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r179922 r179930 1 2015-02-11 Csaba Osztrogonác <ossy@webkit.org> 2 3 run-jsc-stress-tests should pass JSC_timeout to remote hosts 4 https://bugs.webkit.org/show_bug.cgi?id=141164 5 6 Reviewed by Darin Adler. 7 8 Additonally removed IMPORTANT_ENVS, since JSC_timeout was the only one. 9 10 * Scripts/run-jsc-stress-tests: 11 1 12 2015-02-11 Carlos Garcia Campos <cgarcia@igalia.com> 2 13 -
trunk/Tools/Scripts/run-jsc-stress-tests
r179778 r179930 46 46 47 47 HELPERS_PATH = SCRIPTS_PATH + "jsc-stress-test-helpers" 48 49 IMPORTANT_ENVS = ["JSC_timeout"]50 48 51 49 begin … … 493 491 494 492 script += "export DYLD_FRAMEWORK_PATH=$(cd #{$testingFrameworkPath.dirname}; pwd)\n" 495 IMPORTANT_ENVS.each { 496 | key | 497 if ENV[key] 498 script += "export #{key}=#{Shellwords.shellescape(ENV[key])}\n" 499 end 500 } 493 script += "export JSC_timeout=#{Shellwords.shellescape(ENV['JSC_timeout'])}\n" 501 494 script += "#{shellCommand} || exit 1" 502 495 "echo #{Shellwords.shellescape(script)} > #{Shellwords.shellescape((Pathname.new("..") + @name).to_s)}" … … 1383 1376 remoteScript += "tar xzf #{$tarFileName} && " 1384 1377 remoteScript += "cd #{$outputDir.basename}/.runner && " 1385 remoteScript += "DYLD_FRAMEWORK_PATH=\\\"\\$(cd #{$testingFrameworkPath.dirname}; pwd)\\\" sh runscript" 1386 remoteScript += "\"" 1378 remoteScript += "export DYLD_FRAMEWORK_PATH=\\\"\\$(cd #{$testingFrameworkPath.dirname}; pwd)\\\" && " 1379 remoteScript += "export JSC_timeout=#{Shellwords.shellescape(ENV['JSC_timeout'])} && " 1380 remoteScript += "sh runscript\"" 1387 1381 runAndMonitorTestRunnerCommand("ssh", "-p", $remotePort.to_s, "#{$remoteUser}@#{$remoteHost}", remoteScript) 1388 1382 else
Note:
See TracChangeset
for help on using the changeset viewer.