This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository lldb.
from 0663775 Fix xfail for test_tilde_home_directory on windows new 2eb363d test infra: move test event-related handling into its own package
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: packages/Python/lldbsuite/test/decorators.py | 7 +- packages/Python/lldbsuite/test/dosep.py | 15 +- packages/Python/lldbsuite/test/dotest.py | 18 +- packages/Python/lldbsuite/test/lldbtest.py | 7 +- packages/Python/lldbsuite/test/test_result.py | 3 +- .../Python/lldbsuite/test_event}/__init__.py | 0 .../{test => test_event}/dotest_channels.py | 0 .../Python/lldbsuite/test_event/event_builder.py | 435 ++++++++++++++ .../lldbsuite/test_event/formatter/__init__.py | 160 ++++++ .../formatter/curses.py} | 19 +- .../test_event/formatter/dump_formatter.py | 23 + .../lldbsuite/test_event/formatter/pickled.py | 57 ++ .../formatter/results_formatter.py} | 635 +-------------------- .../formatter/xunit.py} | 29 +- 14 files changed, 734 insertions(+), 674 deletions(-) copy {utils/sync-source/lib/transfer => packages/Python/lldbsuite/test_event}/__in [...] rename packages/Python/lldbsuite/{test => test_event}/dotest_channels.py (100%) create mode 100644 packages/Python/lldbsuite/test_event/event_builder.py create mode 100644 packages/Python/lldbsuite/test_event/formatter/__init__.py rename packages/Python/lldbsuite/{test/curses_results.py => test_event/formatter/c [...] create mode 100644 packages/Python/lldbsuite/test_event/formatter/dump_formatter.py create mode 100644 packages/Python/lldbsuite/test_event/formatter/pickled.py rename packages/Python/lldbsuite/{test/result_formatter.py => test_event/formatter [...] rename packages/Python/lldbsuite/{test/xunit_formatter.py => test_event/formatter/ [...]