aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/examples/tst_examples.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quick/examples/tst_examples.cpp')
-rw-r--r--tests/auto/quick/examples/tst_examples.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/auto/quick/examples/tst_examples.cpp b/tests/auto/quick/examples/tst_examples.cpp
index f651655244..63f05a61d9 100644
--- a/tests/auto/quick/examples/tst_examples.cpp
+++ b/tests/auto/quick/examples/tst_examples.cpp
@@ -170,10 +170,16 @@ void tst_examples::namingConvention(const QDir &d)
namingConvention(sub);
}
} else if(!seenLowercase) {
- QFAIL(qPrintable(QString(
+ // QTBUG-28271 don't fail, but rather warn only
+ qWarning() << QString(
"Directory %1 violates naming convention; expected at least one qml file "
"starting with lower case, got: %2"
- ).arg(d.absolutePath()).arg(files.join(","))));
+ ).arg(d.absolutePath()).arg(files.join(","));
+
+// QFAIL(qPrintable(QString(
+// "Directory %1 violates naming convention; expected at least one qml file "
+// "starting with lower case, got: %2"
+// ).arg(d.absolutePath()).arg(files.join(","))));
}
}