summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorhjk <qtc-committer@nokia.com>2009-10-01 09:02:32 +0200
committerhjk <qtc-committer@nokia.com>2009-10-01 09:02:32 +0200
commit54e022a97bce4e88ad115543d002e5fadb68225c (patch)
tree054881df412d517f3d4c9d3830ed7dcd4df2b6b6 /tests
parentb9f06d43e165dc83b2ab2e6e89e243c62753fc9c (diff)
downloadqt-creator-54e022a97bce4e88ad115543d002e5fadb68225c.tar.gz
debugger: add a manual test case for endless recursion
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/gdbdebugger/simple/app.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp
index de03433ea5..a60566876b 100644
--- a/tests/manual/gdbdebugger/simple/app.cpp
+++ b/tests/manual/gdbdebugger/simple/app.cpp
@@ -1308,8 +1308,14 @@ void testUninitialized()
std::stack<int> ssi;
}
+void testEndlessRecursion()
+{
+ testEndlessRecursion();
+}
+
int main(int argc, char *argv[])
{
+ //testEndlessRecursion();
testQStack();
testUninitialized();
testPointer();