From 3b67d5a5d1faa8b9231c72dd58cb8743fbf5dcea Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Thu, 7 Sep 2023 11:12:39 +0200 Subject: QProcess: remove a XFAIL for QNX 91dcc76fc1 might have fixed the underlying issue, so we no longer need the XFAIL codepath at all. Fixes: QTBUG-114720 Change-Id: I67ccbed67a0536b679c50c26eb0b3e51c93dceeb Reviewed-by: Qt CI Bot Reviewed-by: Volker Hilsheimer (cherry picked from commit 2f945aaa263d4688724d11e6ba7f768c4dc6bdd0) Reviewed-by: Thiago Macieira --- tests/auto/corelib/io/qprocess/tst_qprocess.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/auto/corelib/io/qprocess/tst_qprocess.cpp b/tests/auto/corelib/io/qprocess/tst_qprocess.cpp index 1cbb785cab..a7e897b1b5 100644 --- a/tests/auto/corelib/io/qprocess/tst_qprocess.cpp +++ b/tests/auto/corelib/io/qprocess/tst_qprocess.cpp @@ -1595,10 +1595,8 @@ void tst_QProcess::unixProcessParameters() QVERIFY2(process.waitForStarted(5000), qPrintable(process.errorString())); QVERIFY(process.waitForFinished(5000)); -#ifdef Q_OS_QNX - QEXPECT_FAIL("ignore-sigpipe", "QTBUG-114720: flag is taking no effect", Abort); -#endif - QCOMPARE(process.readAllStandardError(), QString()); + const QString stdErr = process.readAllStandardError(); + QCOMPARE(stdErr, QString()); QCOMPARE(process.readAll(), QString()); QCOMPARE(process.exitCode(), 0); QCOMPARE(process.exitStatus(), QProcess::NormalExit); -- cgit v1.2.3