diff options
author | Alexander Richardson <arichardson.kde@gmail.com> | 2018-05-16 09:00:28 +0000 |
---|---|---|
committer | Alexander Richardson <arichardson.kde@gmail.com> | 2018-05-16 09:00:28 +0000 |
commit | 1bffd0f7414623ca4ed8ae4768b827f29fa173ad (patch) | |
tree | 9472990a5c7480f74c77ac075aebd9c6f55e3d33 /llvm/utils/lit/tests/Inputs/xunit-output | |
parent | 8f44579d0bf1da80adebf6a7cd1095eabc1e1e0e (diff) | |
download | bcm5719-llvm-1bffd0f7414623ca4ed8ae4768b827f29fa173ad.tar.gz bcm5719-llvm-1bffd0f7414623ca4ed8ae4768b827f29fa173ad.zip |
Escape ]]> in xunit xml output
Summary:
This sequence ends the CDATA block so any characters after that are no
longer escaped. This can be fixed by replacing "]]>" with "]]]]><![CDATA[>".
Reviewers: cmatthews
Reviewed By: cmatthews
Differential Revision: https://reviews.llvm.org/D46886
llvm-svn: 332440
Diffstat (limited to 'llvm/utils/lit/tests/Inputs/xunit-output')
-rw-r--r-- | llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini b/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini index 8dfc6852b24..3234da66aa4 100644 --- a/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini +++ b/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini @@ -1,7 +1,7 @@ [global] result_code = FAIL -result_output = & < > " +result_output = & < > ]]> &" [results] value0 = 1 -value1 = 2.3456
\ No newline at end of file +value1 = 2.3456 |