X-Git-Url: http://git.draconx.ca/gitweb/cdecl99.git/blobdiff_plain/4ce4dd35946ea92c7f50aaaf4cc370ef6042eaf0..00514ec7f1070550a52651971bb6a5e36efbe4f0:/tests/general.at diff --git a/tests/general.at b/tests/general.at index 899c7e4..21261ed 100644 --- a/tests/general.at +++ b/tests/general.at @@ -97,13 +97,14 @@ AT_SETUP([cdecl99 command error messages]) # This will only get the start of progname if it includes spaces; # so we won't worry too hard about the exact format later. AT_CHECK([LC_ALL=C cdecl99 --help], [0], [stdout]) -progname=`$AWK 'NR == 1 { print $2; }' stdout` +progname=`$AWK 'NR == 1 { print $2; }' stdout`dnl' # every line is erroneous AT_DATA([input], [[explain int a b c simplify int a b c declare a as b c +bad command ]]) AT_DATA([check.awk], @@ -116,4 +117,98 @@ END { exit(status); } AT_CHECK([LC_ALL=C cdecl99 --file=input || exit 42], [42], [], [stderr]) AT_CHECK([$AWK -v progname="$progname" -f check.awk stderr]) +exec 3test.dat <<'EOF' +BEGIN { + print "explain \1"; + print "explain \377"; + print "explain \a"; + print "explain \b"; + print "explain ?"; +} +EOF + +AT_CHECK([LC_ALL=C cdecl99 -f test.dat || exit 42], [42], [], [stderr]) +AT_CHECK([$AWK '{ print $NF; }' stderr], [0], +[['\001' +'\377' +'\a' +'\b' +'?' +]]) + +AT_CLEANUP + +dnl Ensure that parse error messages for misplaced keywords correctly +dnl include the keyword itself. +AT_SETUP([cdecl99 unexpected keyword error messages]) + +# We use the English syntax to reliably force a syntax error where we want +# it, as the "declare" form takes an identifier and not any other token, +AT_DATA([test.dat], +[[declare signed as int +declare typedef as int +declare volatile as int +declare inline as int +]]) + +AT_DATA([test.awk], +[[{ + for (i = 1; i <= $NF; i++) { + if ($i == "unexpected") { + sub(/,$/, "", $(i+1)); + print $(i+1); + break; + } + } +} +]]) + +AT_CHECK([LC_ALL=C cdecl99 -f test.dat || exit 42], [42], [], [stderr]) +AT_CHECK([$AWK -f test.awk stderr], [0], +[[signed +typedef +volatile +inline +]]) + +AT_CLEANUP + +AT_SETUP([cdecl99 interactive mode]) + +AT_DATA([test.dat], +[[explain int () int +explain int x; +quit +]]) + +AT_CHECK([cdecl99 --quiet --interactive [eq]/d +:loop +s/^> // +t loop +/^$/d +]]) + +AT_CHECK([echo >>stdout; sed -f check.sed stdout], [0], +[declare x as int +]) + AT_CLEANUP