1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Description: skip two tests that are failing with LLVM >= 16
Author: Dmitry Shachnev <mitya57@debian.org>
Forwarded: not-needed
Last-Update: 2024-08-11
--- a/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
+++ b/tests/auto/qdoc/generatedoutput/tst_generatedoutput.cpp
@@ -259,6 +259,7 @@ void tst_generatedOutput::webXmlFromQDoc
void tst_generatedOutput::webXmlFromCpp()
{
+ QSKIP("Known failure with LLVM >= 16");
testAndCompare("testdata/configs/webxml_testcpp.qdocconf",
"html/testcpp-module.webxml "
"html/testqdoc-test.webxml "
@@ -393,6 +394,7 @@ void tst_generatedOutput::singleExec()
void tst_generatedOutput::preparePhase()
{
+ QSKIP("Known failure with LLVM >= 16");
testAndCompare("testdata/configs/testcpp.qdocconf",
"testcpp.index",
"-prepare");
|