From e88b49323e36c6900cce0e013c4ac9b701cdee10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Wed, 15 Jul 2015 12:31:12 +0200 Subject: [PATCH] Fix run-test-suite.pl with coverage --- tests/scripts/run-test-suites.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/run-test-suites.pl b/tests/scripts/run-test-suites.pl index e8611f4f1..ab9db8255 100644 --- a/tests/scripts/run-test-suites.pl +++ b/tests/scripts/run-test-suites.pl @@ -6,7 +6,7 @@ use strict; 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