debugger: add a manual test for an endless loop and check for

-thread-group-started in addition to -thread-group-created
This commit is contained in:
hjk
2010-04-07 09:19:36 +02:00
parent 6249aabc75
commit 5d59945646
2 changed files with 14 additions and 5 deletions

View File

@@ -1531,6 +1531,14 @@ void testEndlessRecursion()
testEndlessRecursion();
}
int testEndlessLoop()
{
qlonglong a = 1;
while (a > 0)
++a;
return a;
}
QString fooxx()
{
return "bababa";
@@ -1550,6 +1558,7 @@ int main(int argc, char *argv[])
testFunctionPointer();
testAnonymous();
testReference();
//testEndlessLoop();
//testEndlessRecursion();
testQStack();
testUninitialized();
@@ -1625,9 +1634,6 @@ int main(int argc, char *argv[])
Q_UNUSED(s);
Q_UNUSED(w);
while(true)
;
}
QT_BEGIN_NAMESPACE