diff options
Diffstat (limited to 'tests/auto/main/tst_main.cpp')
-rw-r--r-- | tests/auto/main/tst_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/main/tst_main.cpp b/tests/auto/main/tst_main.cpp index f78aa90b..2965e72d 100644 --- a/tests/auto/main/tst_main.cpp +++ b/tests/auto/main/tst_main.cpp @@ -377,7 +377,7 @@ void tst_Main::startupTimer() QFile f(fn); QVERIFY(f.open(QIODevice::ReadOnly)); - auto report = f.readAll(); + auto report = f.readAll().replace('\r', QByteArray { }); QVERIFY(report.startsWith("\n== STARTUP TIMING REPORT: TEST ==")); QVERIFY(report.contains("after QML engine instantiation")); |