mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 06:18:10 +00:00
Fix run-test-suite.pl with coverage
This commit is contained in:
parent
10c767488b
commit
e88b49323e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue