commit | e88b49323e36c6900cce0e013c4ac9b701cdee10 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 15 12:31:12 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Jul 15 12:31:12 2015 +0200 |
tree | a088fe98a6d129aa86aba330f29c5d72e183b28b | |
parent | 10c767488be36b894332a389b85aad19ff0425ee [diff] [blame] |
Fix run-test-suite.pl with coverage
diff --git a/tests/scripts/run-test-suites.pl b/tests/scripts/run-test-suites.pl index e8611f4..ab9db82 100644 --- a/tests/scripts/run-test-suites.pl +++ b/tests/scripts/run-test-suites.pl
@@ -6,7 +6,7 @@ use utf8; use open qw(:std utf8); -my @suites = grep { ! /\.c$/ } glob 'test_suite_*'; +my @suites = grep { ! /\.(?:c|gcno)$/ } glob 'test_suite_*'; die "$0: no test suite found\n" unless @suites; # in case test suites are linked dynamically