X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/0be9665d13739d12085ef2f5c2d4a47215d7612d..23bee8f66fbd14c308d3c509a59024768bc2feef:/tests/stress.at diff --git a/tests/stress.at b/tests/stress.at index 9b45cea..3ee72d9 100644 --- a/tests/stress.at +++ b/tests/stress.at @@ -1,4 +1,4 @@ -# Copyright © 2012, 2020 Nick Bowler +# Copyright © 2012, 2020, 2022-2024 Nick Bowler # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -13,7 +13,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -AT_BANNER([Randomized tests]) +AT_BANNER([Stress tests]) + +dnl Verify the RNG implementation +TEST_TAP_SIMPLE([xoshiro256p sanity], [rng-test], + [TEST_NEED_PROGRAM([rng-test])]) dnl Verify that randomdecl actually produces all keywords and a variety dnl of different declarations. @@ -26,8 +30,8 @@ m4_define([sanity_tests], [dnl [[^type], [type name]], [[inline], [inline function specifier]], [[inline inline], [redundant function specifiers]], - [[function (@<:@@<:@:alnum:@:>@_@:>@* as], [named function parameter]], - [[function (void)], [empty prototype declaration]], + [[function [(]@<:@]]RE_ALNUM()_[[@:>@* as], [named function parameter]], + [[function [(]void[)]], [empty prototype declaration]], [[function returning], [non-prototype function declaration]], [[\.\.\.], [variadic function]], [[const], [const qualifier]], @@ -58,24 +62,119 @@ m4_define([sanity_tests], [dnl [[pointer to function], [pointer to a function]], ]) -m4_define([sanity_sed], [/$1/i\ -AS_TR_SH([$2])=:]) -AT_DATA([sanity.sed], [#n -m4_map_sep([sanity_sed], [m4_newline], [sanity_tests]) +m4_define([sanity_awk], [[/$1/ { found["$2"] = 1; } +]])AT_DATA([sanity.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 = "@"; } +m4_map([sanity_awk], [sanity_tests])dnl +END { for (k in found) print "FOUND", k; } ]) -printf 'Using seed %d\n' "$random_seed" >&AS_MESSAGE_LOG_FD -AT_CHECK([randomdecl -En 10000 -s "$random_seed" >decls], [0], [ignore-nolog]) -AT_CHECK([sed -f sanity.sed decls], [0], [stdout-nolog]) -sort -u stdout >decls.chk +m4_define([sanity_exp], [[FOUND $2 +]]) +LC_ALL=C sort >expout <<'EOF' +m4_map([sanity_exp], [sanity_tests])dnl +EOF + +AS_ECHO(["Using seed $random_seed"]) >&AS_MESSAGE_LOG_FD +AT_CHECK([randomdecl -En 10000 -s "$random_seed" >decls], [0]) +AT_CHECK([$AWK -f sanity.awk decls | LC_ALL=C sort], [0], [expout]) + +AT_CLEANUP + +AT_SETUP([Random crossparse]) + +TEST_NEED_PROGRAM([randomdecl]) +TEST_NEED_PROGRAM([crossparse]) + +AS_ECHO(["Using seed $random_seed"]) >&AS_MESSAGE_LOG_FD +AT_CHECK([randomdecl -n "$random_iter" -s "$random_seed"],, [stdout-nolog]) +AT_CHECK([crossparse -f stdout]) +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 < 0) { + l = substr($0, 1, RSTART-1); + r = substr($0, RSTART+RLENGTH); + $0 = l ", [plus " RLENGTH " more parameters]" r; + } +} -exec 3 0) + print "[repeated " count " more times]"; +} +]]) + +a="a" +for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14; do + AS_VAR_APPEND([a], [",$a"]) done -exec 3<&- -m4_define([sanity_check], [AT_CHECK([$AS_TR_SH([$2]) false])]) -m4_map([sanity_check], [sanity_tests]) +cat >test.dat <test.out; status=$?; +$AWK -f check.awk test.out +exit $status], [0], +[[declare a as int +[repeated 16383 more times] +type function (a, [plus 16383 more parameters]) returning int +int (a, [plus 16383 more parameters]) +]]) AT_CLEANUP