diff options
author | Thiago Macieira <[email protected]> | 2024-09-19 16:44:11 -0700 |
---|---|---|
committer | Thiago Macieira <[email protected]> | 2024-10-11 11:52:19 -0700 |
commit | f566b09ed7b71f47c477f8dfd306e568dac1936f (patch) | |
tree | b1ec0daa73d891726b97a8b03ef33ae656b471ab /src/testlib/qtestcase.cpp | |
parent | 80d1787759e6bea318c7e39aaea7380b45d84a41 (diff) |
QtTest: add missing newline to -throwonfail/skip lines
Amends fde57300ab51c7deda168f6a4515dcf7b1340618.
Pick-to: 6.8
Change-Id: Ib63838f3ccbd614164cbfffd0c3029e25331cc13
Reviewed-by: Tor Arne Vestbø <[email protected]>
Reviewed-by: Ahmad Samir <[email protected]>
Diffstat (limited to 'src/testlib/qtestcase.cpp')
-rw-r--r-- | src/testlib/qtestcase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testlib/qtestcase.cpp b/src/testlib/qtestcase.cpp index 4c025762d0f..78e8038c05b 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) |