mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2026-02-19 00:39:46 +00:00
Merge remote-tracking branch 'gilles/IOTSSL-1330/development' into development
* gilles/IOTSSL-1330/development: Changelog entry for the bug fixes SSLv3: when refusing renegotiation, stop processing Ignore failures when sending fatal alerts Cleaned up double variable declaration Code portability fix Added changelog entry Send TLS alerts in many more cases Skip all non-executables in run-test-suites.pl SSL tests: server requires auth, client has no certificate Balanced braces across preprocessor conditionals Support setting the ports on the command line
This commit is contained in:
@@ -33,7 +33,10 @@ if ( defined($switch) && ( $switch eq "-v" || $switch eq "--verbose" ) ) {
|
||||
$verbose = TRUE;
|
||||
}
|
||||
|
||||
my @suites = grep { ! /\.(?:c|gcno|gcda|dSYM)$/ } glob 'test_suite_*';
|
||||
# All test suites = executable files, excluding source files, debug
|
||||
# and profiling information, etc. We can't just grep {! /\./} because
|
||||
#some of our test cases' base names contain a dot.
|
||||
my @suites = grep { -x $_ || /\.exe$/ } glob 'test_suite_*';
|
||||
die "$0: no test suite found\n" unless @suites;
|
||||
|
||||
# in case test suites are linked dynamically
|
||||
|
||||
Reference in New Issue
Block a user