diff options
author | hjk <qtc-committer@nokia.com> | 2009-10-01 09:02:32 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2009-10-01 09:02:32 +0200 |
commit | 54e022a97bce4e88ad115543d002e5fadb68225c (patch) | |
tree | 054881df412d517f3d4c9d3830ed7dcd4df2b6b6 /tests | |
parent | b9f06d43e165dc83b2ab2e6e89e243c62753fc9c (diff) | |
download | qt-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.cpp | 6 |
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(); |