From f96244f614894b19e5964925db963aeb56e16bdd Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 1 Jul 2020 11:14:30 +0200 Subject: [PATCH] Don't set the environment variable QT_RCC_TEST anymore in tst_rcc The reason for setting this variable was removed in commit 300bd7fff8b. Task-number: QTBUG-25078 Change-Id: Id06072c099481a258cb65b4603efe010e306b7b2 Reviewed-by: hjk --- tests/auto/tools/rcc/tst_rcc.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/auto/tools/rcc/tst_rcc.cpp b/tests/auto/tools/rcc/tst_rcc.cpp index a4dbbfb657..a3710d46eb 100644 --- a/tests/auto/tools/rcc/tst_rcc.cpp +++ b/tests/auto/tools/rcc/tst_rcc.cpp @@ -103,9 +103,6 @@ private: void tst_rcc::initTestCase() { - // rcc uses a QHash to store files in the resource system. - // we must force a certain hash order when testing or tst_rcc will fail, see QTBUG-25078 - QVERIFY(qputenv("QT_RCC_TEST", "1")); m_rcc = QLibraryInfo::location(QLibraryInfo::BinariesPath) + QLatin1String("/rcc"); m_dataPath = QFINDTESTDATA("data");