Changeset 99381 in webkit
- Timestamp:
- Nov 6, 2011, 1:01:45 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/common/system/executive_mock.py (modified) (2 diffs)
-
Scripts/webkitpy/layout_tests/port/webkit.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r99379 r99381 1 2011-11-06 Eric Seidel <eric@webkit.org> 2 3 Clarify how the symbol and runtime-feature based test exclusion works and cleanup the code a bit 4 https://bugs.webkit.org/show_bug.cgi?id=66078 5 6 Unreviewed. Add an assert about the type of "args" 7 to our Executive Mocks and fix a piece of code 8 from this patch which was hitting that assert 9 when executing for real. 10 11 * Scripts/webkitpy/common/system/executive_mock.py: 12 * Scripts/webkitpy/layout_tests/port/webkit.py: 13 1 14 2011-11-06 Eric Seidel <eric@webkit.org> 2 15 -
trunk/Tools/Scripts/webkitpy/common/system/executive_mock.py
r99140 r99381 60 60 return_stderr=True, 61 61 decode_output=False): 62 assert(isinstance(args, list) or isinstance(args, tuple)) 62 63 if self._should_log: 63 64 log("MOCK run_command: %s, cwd=%s" % (args, cwd)) … … 93 94 return_stderr=True, 94 95 decode_output=False): 96 assert(isinstance(args, list) or isinstance(args, tuple)) 95 97 if self._exception: 96 98 raise self._exception -
trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py
r99377 r99381 263 263 return None 264 264 try: 265 return self._executive.run_command( 'nm', webcore_library_path, error_handler=Executive.ignore_error)265 return self._executive.run_command(['nm', webcore_library_path], error_handler=Executive.ignore_error) 266 266 except OSError, e: 267 267 _log.warn("Failed to run nm: %s. Can't determine WebCore supported features." % e)
Note:
See TracChangeset
for help on using the changeset viewer.