Changeset 57187 in webkit


Ignore:
Timestamp:
Apr 6, 2010 7:33:47 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

2010-04-06 Dirk Pranke <dpranke@chromium.org>

Reviewed by Eric Seidel.

Write stack traces into the results directory for new-run-webkit-tests,
instead of writing them alongside the test file.

https://bugs.webkit.org/show_bug.cgi?id=36504

  • Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57185 r57187  
     12010-04-06  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Write stack traces into the results directory for new-run-webkit-tests,
     6        instead of writing them alongside the test file.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=36504
     9
     10        * Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py:
     11
    1122010-04-06  Dirk Pranke  <dpranke@chromium.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/test_shell_thread.py

    r55937 r57187  
    8686        # Strip off "file://" since RelativeTestFilename expects
    8787        # filesystem paths.
    88         filename = os.path.join(output_dir, test_info.filename)
     88        filename = os.path.join(output_dir, port.relative_test_filename(
     89                                test_info.filename))
    8990        filename = os.path.splitext(filename)[0] + "-stack.txt"
    9091        port.maybe_make_directory(os.path.split(filename)[0])
Note: See TracChangeset for help on using the changeset viewer.