diff options
Diffstat (limited to 'testsuite/gna/bug0125/gen2d.py')
-rwxr-xr-x | testsuite/gna/bug0125/gen2d.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testsuite/gna/bug0125/gen2d.py b/testsuite/gna/bug0125/gen2d.py new file mode 100755 index 000000000..c058f748b --- /dev/null +++ b/testsuite/gna/bug0125/gen2d.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +# Generate a big aggregate + +import sys +import random + +out = sys.stdout + + +depth = 1024 +width = 6 + +out.write(""" +package repro is + type array2d is array(0 to {}, 0 to {}) of integer; + + constant cst : array2d := + ( +""".format(depth - 1, width - 1)) + +for i in range(depth): + if i != 0: + out.write(',\n') + out.write (' (') + for j in range(width): + if j != 0: + out.write(', ') + out.write('{}'.format(random.randint(0, 1<<31))) + out.write(')') +out.write(""" + ); +end repro; +""") |