diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-12-03 18:40:58 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-12-03 18:40:58 +0000 |
commit | 93c5b915aea641958edf2ea90fd35ab5e8a207eb (patch) | |
tree | 1d13e97b66db80cc2eb7219d6b328bb9d13c3c9d /utils/TestUtils/deep-stack.py | |
parent | 1ab537be683c31afba3272a61ddd13811967d3be (diff) |
Add utils/TestUtils, and sink pch-test.pl there.
Also, add a test for generator a C file with a very deep call stack.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TestUtils/deep-stack.py')
-rwxr-xr-x | utils/TestUtils/deep-stack.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/utils/TestUtils/deep-stack.py b/utils/TestUtils/deep-stack.py new file mode 100755 index 0000000000..1750a5fca0 --- /dev/null +++ b/utils/TestUtils/deep-stack.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +def pcall(f, N): + if N == 0: + print >>f, ' f(0)' + return + + print >>f, ' f(' + pcall(f, N - 1) + print >>f, ' )' + +def main(): + f = open('t.c','w') + print >>f, 'int f(int n) { return n; }' + print >>f, 'int t() {' + print >>f, ' return' + pcall(f, 10000) + print >>f, ' ;' + print >>f, '}' + +if __name__ == "__main__": + import sys + sys.setrecursionlimit(100000) + main() |