diff --git a/CHANGES b/CHANGES index 59dca5fe8e..5455544899 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +6340. [test] Fix incorrectly reported errors when running tests + with `make test` on platforms with older pytest. + [GL #4560] + 6339. [bug] The alignas() can't be used on types larger than max_align_t; instead add padding into the structures where we want avoid false memory sharing. [GL #4187] diff --git a/bin/tests/system/convert-junit-to-trs.py b/bin/tests/system/convert-junit-to-trs.py index b3d44b5567..9675825a50 100755 --- a/bin/tests/system/convert-junit-to-trs.py +++ b/bin/tests/system/convert-junit-to-trs.py @@ -13,7 +13,7 @@ from xml.etree import ElementTree def junit_to_trs(junit_xml): root = ElementTree.fromstring(junit_xml) - testcases = root.findall("./testsuite/testcase") + testcases = root.findall(".//testcase") if len(testcases) < 1: print(":test-result: ERROR convert-junit-to-trs.py")