1
0
Files
research-portable-memory/c/ext/uthash/tests/do_tests
Михаил Капелько 4e09f4e980 d
2024-03-19 22:26:27 +03:00

22 linhas
367 B
Perl
Arquivo executável

#!/usr/bin/perl
use strict;
use warnings;
my @tests;
for (glob "test*[0-9]") {
push @tests, $_ if -e "$_.ans";
}
my $num_failed=0;
for my $test (@tests) {
`./$test > $test.out`;
`diff $test.out $test.ans`;
print "$test failed\n" if $?;
$num_failed++ if $?;
}
print scalar @tests . " tests conducted, $num_failed failed.\n";
exit $num_failed;