mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 05:46:41 +01:00
Fix run-test-suites.pl to screen for files
Changes run-test-suites.pl to filter out directories, and select only files as on OSX, test coverage tests create .dSYM directories which were being accidentally selected to execute.
This commit is contained in:
parent
597dbf8802
commit
6e3606e4f6
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ if ( defined($switch) && ( $switch eq "-v" || $switch eq "--verbose" ) ) {
|
||||||
# and profiling information, etc. We can't just grep {! /\./} because
|
# and profiling information, etc. We can't just grep {! /\./} because
|
||||||
# some of our test cases' base names contain a dot.
|
# some of our test cases' base names contain a dot.
|
||||||
my @suites = grep { -x $_ || /\.exe$/ } glob 'test_suite_*';
|
my @suites = grep { -x $_ || /\.exe$/ } glob 'test_suite_*';
|
||||||
@suites = grep { !/\.c$/ && !/\.data$/ } @suites;
|
@suites = grep { !/\.c$/ && !/\.data$/ && -f } @suites;
|
||||||
die "$0: no test suite found\n" unless @suites;
|
die "$0: no test suite found\n" unless @suites;
|
||||||
|
|
||||||
# in case test suites are linked dynamically
|
# in case test suites are linked dynamically
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue