summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-11-18 16:45:09 +1000
committerQt by Nokia <qt-info@nokia.com>2011-11-18 08:58:34 +0100
commit7a65dd310852037642d94a59566d1528315ea624 (patch)
tree4287baf0e6e0393591a0261c954563dccfc15b2a /tests
parent1ce050cd5df226a70b5005fe891772261cec5703 (diff)
Remove disabled code from QLibrary autotest
The removed code was already commented-out when it was first added in 2007, and would not form a useful test as it was not followed by any verification steps. QLibrary::setLoadHints() is tested elsewhere, so this code can vanish. Change-Id: I1c4dcaacaf31b0f38136336414cfbe3de1a406f3 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/corelib/plugin/qlibrary/tst_qlibrary.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/corelib/plugin/qlibrary/tst_qlibrary.cpp b/tests/auto/corelib/plugin/qlibrary/tst_qlibrary.cpp
index a488aa021f..c3fe27dddf 100644
--- a/tests/auto/corelib/plugin/qlibrary/tst_qlibrary.cpp
+++ b/tests/auto/corelib/plugin/qlibrary/tst_qlibrary.cpp
@@ -568,11 +568,6 @@ void tst_QLibrary::multipleInstancesForOneLibrary()
QLibrary lib2(lib);
//lib2 should be loaded because lib1 was loaded and never unloaded
QCOMPARE(lib2.isLoaded(), true);
-
-/*
- lib1.setLoadHints(QLibrary::ResolveAllSymbolsHint);
- lib2.setLoadHints(QLibrary::ExportExternalSymbolHint);
-*/
}
QTEST_APPLESS_MAIN(tst_QLibrary)