From ad4af460ab9ed49de0e7025fad0444930a78f017 Mon Sep 17 00:00:00 2001 From: Ari Parkkila Date: Wed, 10 Jul 2024 10:22:56 +0300 Subject: [PATCH] tests: Fix tst_qtextcodec to start echo_helper from test directory Task-number: QTBUG-118680 Change-Id: I80f7b78143de8ae6347b0b3b74456c3de899b779 Reviewed-by: Thiago Macieira --- tests/auto/core5/codecs/qtextcodec/tst_qtextcodec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/core5/codecs/qtextcodec/tst_qtextcodec.cpp b/tests/auto/core5/codecs/qtextcodec/tst_qtextcodec.cpp index 38f76d5..6f04061 100644 --- a/tests/auto/core5/codecs/qtextcodec/tst_qtextcodec.cpp +++ b/tests/auto/core5/codecs/qtextcodec/tst_qtextcodec.cpp @@ -2239,7 +2239,7 @@ void tst_QTextCodec::toLocal8Bit() QSKIP("No qprocess support", SkipAll); #else QProcess process; - process.start("echo_helper"); + process.start(QFINDTESTDATA("echo_helper")); QString string(QChar(0x410)); process.write((const char*)string.utf16(), string.size()*2);