1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Merge remote-tracking branch 'upstream/development' into iss309

This commit is contained in:
Janos Follath
2015-10-25 12:36:03 +01:00
14 changed files with 61 additions and 685 deletions

View File

@ -21,12 +21,12 @@ for my $suite (@suites)
my $result = `$prefix$suite`;
if( $result =~ /PASSED/ ) {
print "PASS\n";
my ($tests, $skipped) = $result =~ /([0-9]*) tests.*?([0-9]*) skipped/;
$total_tests_run += $tests - $skipped;
} else {
$failed_suites++;
print "FAIL\n";
}
my ($tests, $skipped) = $result =~ /([0-9]*) tests.*?([0-9]*) skipped/;
$total_tests_run += $tests - $skipped;
}
print "-" x 72, "\n";