Revert "Device/Driver/LX: Add small delay after baud rate change"
[xcsoar.git] / test / tools / testall.pl
blob79a1258e0b529bf4d2189346531c859a91dbc523
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
4 use TAP::Harness;
5 my $harness = TAP::Harness->new({
6 exec => sub {
7 my ($harness, $test_file) = @_;
8 # Let Perl tests run.
9 return undef if $test_file =~ /[.]pl$/;
10 if (-x $test_file) {
11 return [ $test_file ];
13 die "Unknown test file type - $test_file\n";
15 });
16 $harness->runtests(@ARGV);