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-08 19:00:49 +0200
commit2f945aaa263d4688724d11e6ba7f768c4dc6bdd0 (patch)
tree0bdbc23c0dc8859543fb8264d39c183b9d047ce7
parente9a1c53214d3936721e00bebbdc1e949e10658dd (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 Pick-to: 6.6 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
-rw-r--r--tests/auto/corelib/io/qprocess/tst_qprocess.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/corelib/io/qprocess/tst_qprocess.cpp b/tests/auto/corelib/io/qprocess/tst_qprocess.cpp
index 8a927dc4fd..030dcb7993 100644
--- a/tests/auto/corelib/io/qprocess/tst_qprocess.cpp
+++ b/tests/auto/corelib/io/qprocess/tst_qprocess.cpp
@@ -1807,10 +1807,6 @@ void tst_QProcess::unixProcessParameters()
QVERIFY(process.waitForFinished(5000));
const QString stdErr = process.readAllStandardError();
-#ifdef Q_OS_QNX
- if (stdErr != QString())
- QEXPECT_FAIL("ignore-sigpipe", "QTBUG-114720: flag is sometimes ignored", Abort);
-#endif
QCOMPARE(stdErr, QString());
QCOMPARE(process.readAll(), QString());
QCOMPARE(process.exitCode(), 0);