summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2023-09-07 11:12:39 +0200
committerGiuseppe D'Angelo <giuseppe.dangelo@kdab.com>2023-09-12 07:59:08 +0000
commit3b67d5a5d1faa8b9231c72dd58cb8743fbf5dcea (patch)
treeede85b05d41b8041eac450f900869353c81b80e2
parent9dd2dd4ab42c1164ac3c30a4d9e2fc6e6a9b39e5 (diff)
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 <qt_ci_bot@qt-project.org> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 2f945aaa263d4688724d11e6ba7f768c4dc6bdd0) Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
-rw-r--r--tests/auto/corelib/io/qprocess/tst_qprocess.cpp6
1 files 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);