Add utils/TestUtils, and sink pch-test.pl there.

Also, add a test for generator a C file with a very deep call stack.

llvm-svn: 90468
This commit is contained in:
Daniel Dunbar 2009-12-03 18:40:58 +00:00
parent c99f155365
commit bdd9669310
2 changed files with 24 additions and 0 deletions

View File

@ -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()