Skip to content
Snippets Groups Projects
Commit 54e022a9 authored by hjk's avatar hjk
Browse files

debugger: add a manual test case for endless recursion

parent b9f06d43
No related branches found
No related tags found
No related merge requests found
...@@ -1308,8 +1308,14 @@ void testUninitialized() ...@@ -1308,8 +1308,14 @@ void testUninitialized()
std::stack<int> ssi; std::stack<int> ssi;
} }
void testEndlessRecursion()
{
testEndlessRecursion();
}
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
//testEndlessRecursion();
testQStack(); testQStack();
testUninitialized(); testUninitialized();
testPointer(); testPointer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment