diff options
author | Tim Hammerquist <penryu@apple.com> | 2017-03-11 00:58:41 +0000 |
---|---|---|
committer | Tim Hammerquist <penryu@apple.com> | 2017-03-11 00:58:41 +0000 |
commit | e4885f89993ea45a18b085412d09f32330fb3edb (patch) | |
tree | cee44803b60219f4feb1c73316963e2180c8069f /lldb/packages/Python/lldbsuite | |
parent | cd07a0f685149018d48adfc660b4ab8ee0c43e81 (diff) | |
download | bcm5719-llvm-e4885f89993ea45a18b085412d09f32330fb3edb.tar.gz bcm5719-llvm-e4885f89993ea45a18b085412d09f32330fb3edb.zip |
fix xunit attribute parsing
llvm-svn: 297538
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py b/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py index d3ea8677f0a..91487cd2c3a 100644 --- a/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py +++ b/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py @@ -336,7 +336,7 @@ class XunitFormatter(ResultsFormatter): test_event, inner_content=( '<error type={} message={}></error>'.format( - "timeout", + XunitFormatter._quote_attribute("timeout"), XunitFormatter._quote_attribute(message)) )) with self.lock: |