diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2015-11-04 17:10:40 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2015-11-04 17:10:40 +0000 |
commit | d8078ffcfc93a6c08e0795029538fb064dd2d768 (patch) | |
tree | 1630cf54b45e5cb9fe1b21eed37fdff025c3f98a /lldb/packages/Python/lldbsuite/test | |
parent | e7d679cf4c69e9b225ee7830868c67fa3d623fc4 (diff) | |
download | bcm5719-llvm-d8078ffcfc93a6c08e0795029538fb064dd2d768.tar.gz bcm5719-llvm-d8078ffcfc93a6c08e0795029538fb064dd2d768.zip |
Fix test infrastructure when using xunit output.
Our test reporting infrastructure needed module names to change based on the python package layout.
llvm-svn: 252058
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/dotest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py index f6413de9834..cdaf8167711 100644 --- a/lldb/packages/Python/lldbsuite/test/dotest.py +++ b/lldb/packages/Python/lldbsuite/test/dotest.py @@ -922,12 +922,12 @@ def setupTestResults(): else: results_file_object = open(results_filename, "w") cleanup_func = results_file_object.close - default_formatter_name = "test_results.XunitFormatter" + default_formatter_name = "lldbsuite.test.test_results.XunitFormatter" elif results_port: # Connect to the specified localhost port. results_file_object, cleanup_func = createSocketToLocalPort( results_port) - default_formatter_name = "test_results.RawPickledFormatter" + default_formatter_name = "lldbsuite.test.test_results.RawPickledFormatter" if results_file_object: # We care about the formatter. Choose user-specified or, if |