Changeset 34174 in webkit for trunk/JavaScriptCore
- Timestamp:
- May 28, 2008, 10:31:22 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r34172 r34174 1 2008-05-28 Adam Roben <[email protected]> 2 3 Make run-javascriptcore-tests work with a space in the path to testkjs 4 5 Reviewed by Alexey Proskuryakov. 6 7 * tests/mozilla/jsDriver.pl: Quote the path to the engine so that 8 spaces will be interpreted correctly. 9 1 10 2008-05-28 Alexey Proskuryakov <[email protected]> 2 11 -
trunk/JavaScriptCore/tests/mozilla/jsDriver.pl
r33979 r34174 174 174 # since the last time we looked.) 175 175 if ($last_suite ne $suite || $last_test_dir ne $test_dir) { 176 $shell_command = &xp_path($engine_command) . " -s "; 176 # FIXME: Quoting the path this way won't work with paths with 177 # quotes in them. A better fix would be to use the multi-parameter 178 # version of open(), but that doesn't work on ActiveState Perl. 179 $shell_command = "\"" . &xp_path($engine_command) . "\" -s "; 177 180 178 181 $path = &xp_path($opt_suite_path . $suite . "/shell.js");
Note:
See TracChangeset
for help on using the changeset viewer.