aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2011-05-16 15:14:30 +0200
committerhjk <qtc-committer@nokia.com>2011-05-16 17:22:05 +0200
commit2f009a301b0600855579f777a81c77e4fbce4d7a (patch)
tree08aad0a6050277753755828e784d372f4b97de94 /tests
parent185aaa7e265fd6ddfeaf3440f5b1601176b26038 (diff)
debugger: remove custom 'select' function from dumpers
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp b/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp
index a81f206f859..43ab564baa0 100644
--- a/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp
+++ b/tests/manual/gdbdebugger/simple/simple_gdbtest_app.cpp
@@ -539,6 +539,8 @@ int testQByteArray2()
QByteArray ba;
for (int i = 256; --i >= 0; )
ba.append(char(i));
+ QString s(10000, 'x');
+ std::string ss(10000, 'c');
return ba.size();
}
@@ -1339,7 +1341,7 @@ std::list<int> testStdList()
void testStdMap()
{
// This is not supposed to work with the compiled dumpers.
-#if 0
+#if 1
std::map<QString, Foo> gg3;
gg3["22.0"] = Foo(22);
gg3["33.0"] = Foo(33);