From a0b46eaf3a5513d75c4ca7ad87840697c755e5e8 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Thu, 19 Sep 2024 16:44:11 -0700 Subject: [PATCH] QtTest: add missing newline to -throwonfail/skip lines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Amends fde57300ab51c7deda168f6a4515dcf7b1340618. Change-Id: Ib63838f3ccbd614164cbfffd0c3029e25331cc13 Reviewed-by: Tor Arne Vestbø Reviewed-by: Ahmad Samir (cherry picked from commit f566b09ed7b71f47c477f8dfd306e568dac1936f) Reviewed-by: Qt Cherry-pick Bot --- src/testlib/qtestcase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/testlib/qtestcase.cpp b/src/testlib/qtestcase.cpp index aa31a181697..e3deb12a3b2 100644 --- a/src/testlib/qtestcase.cpp +++ b/src/testlib/qtestcase.cpp @@ -674,9 +674,9 @@ Q_TESTLIB_EXPORT void qtest_qParseArgs(int argc, const char *const argv[], bool " is only supported with the plain text logger.\n" " -skipblacklisted : Skip blacklisted tests. Useful for measuring test coverage.\n" " -[no]throwonfail : Enables/disables throwing on QCOMPARE()/QVERIFY()/etc.\n" - " Default: off, unless QTEST_THROW_ON_FAIL is set." + " Default: off, unless QTEST_THROW_ON_FAIL is set.\n" " -[no]throwonskip : Enables/disables throwing on QSKIP().\n" - " Default: off, unless QTEST_THROW_ON_SKIP is set." + " Default: off, unless QTEST_THROW_ON_SKIP is set.\n" "\n" " Benchmarking options:\n" #if QT_CONFIG(valgrind)