X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/f122444873a1ec499d25ffec5765dcc48dc7b928..b7171c45f4eab4d06810d7e9617193cf62d08d38:/tests/output.at diff --git a/tests/output.at b/tests/output.at index 7dbc3db7..6c98ef7e 100644 --- a/tests/output.at +++ b/tests/output.at @@ -37,10 +37,11 @@ foo: {}; ]AT_BISON_CHECK([$3 $1 $5], 0)[ # Ignore the files non-generated files -]AT_CHECK([find . -type f -and -not -path './$1' -and -not -path './testsuite.log' | - sed 's,\./,,' | - sort | - xargs echo], +]AT_CHECK([[find . -type f | + $PERL -ne ' + s,\./,,; chomp; + push @file, $_ unless m{^($1|testsuite.log)$}; + END { print join (" ", sort @file), "\n" }']], [], [$4 ])[ ]$6[