summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-09-29 14:08:21 +0200
committerOlivier Goffart <olivier.goffart@nokia.com>2010-09-29 14:28:33 +0200
commit02aecce59cb76ceb88f63520355381c3b5c5a513 (patch)
treeae497ef4c77d3f9ae03cee4bc7bd22bfca50f8ab /tests
parent33f525e636ef8fa64a15d3e66c56adaea0075bda (diff)
QTextCodec: Fix valgrind warning when using QTextCodec in destructions functions
Reviewed-by: Denis
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtextcodec/tst_qtextcodec.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qtextcodec/tst_qtextcodec.cpp b/tests/auto/qtextcodec/tst_qtextcodec.cpp
index cc41591756..3d8f1a305d 100644
--- a/tests/auto/qtextcodec/tst_qtextcodec.cpp
+++ b/tests/auto/qtextcodec/tst_qtextcodec.cpp
@@ -2236,6 +2236,15 @@ void tst_QTextCodec::moreToFromUnicode()
QCOMPARE(testData, cStr);
}
+struct DontCrashAtExit {
+ ~DontCrashAtExit() {
+ QTextCodec *c = QTextCodec::codecForName("utf8");
+ if (c)
+ c->toUnicode("azerty");
+
+ }
+} dontCrashAtExit;
+
QTEST_MAIN(tst_QTextCodec)
#include "tst_qtextcodec.moc"