X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/a118e977106144aa753045c59e9f5278facc48d7..f9f25a36518274455212cf387599aa4e7bc2e0c8:/tests/stress.at diff --git a/tests/stress.at b/tests/stress.at index 40e8812..a8e9500 100644 --- a/tests/stress.at +++ b/tests/stress.at @@ -96,27 +96,8 @@ AT_CLEANUP # Check that we can parse declarations with more than 10000 specifiers. AT_SETUP([Excessive specifiers]) -s="const" -for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14; do - AS_VAR_APPEND([s], [" $s"]) -done - -cat >test.dat <>test.dat <test.dat || exit 77 +cdecl99 -f test.dat], [0], [[type const int type const int const int @@ -125,3 +106,45 @@ inline int f() ]]) AT_CLEANUP + +# Check that we can parse declarations with more than 10000 declarators. +AT_SETUP([Excessive declarators]) + +AT_DATA([check.awk], +[[# We don't need any field splitting, so choose a character that does not +# appear in C code to avoid tripping over 199-field limit in HP-UX 11 awk. +BEGIN { FS = "@"; runstart = 0; } +END { finish_run(NR); } + +$0 != lastline { + finish_run(NR-1); + lastline = $0; + runstart = NR; + print; +} + +function finish_run(nr) { + count = nr - runstart; + if (count > 0) + print "[repeated " count " more times]"; +} +]]) + +AT_CHECK([gunzip -c "$srcdir/tests/data/manydecl.gz" >test.dat || exit 77 +cdecl99 -f test.dat >test.out; status=$?; +tr