summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/auto/corelib/global/qlogging/tst_qlogging.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/corelib/global/qlogging/tst_qlogging.cpp b/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
index 749c7da789..68b1fef71d 100644
--- a/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
+++ b/tests/auto/corelib/global/qlogging/tst_qlogging.cpp
@@ -40,6 +40,9 @@
class tst_qmessagehandler : public QObject
{
Q_OBJECT
+public:
+ tst_qmessagehandler();
+
public slots:
void initTestCase();
@@ -92,6 +95,12 @@ void customMsgHandler(QtMsgType type, const char *msg)
s_message = QString::fromLocal8Bit(msg);
}
+tst_qmessagehandler::tst_qmessagehandler()
+{
+ // ensure it's unset, otherwise we'll have trouble
+ qputenv("QT_MESSAGE_PATTERN", "");
+}
+
void tst_qmessagehandler::initTestCase()
{
m_appDir = QFINDTESTDATA("app");