repo.or.cz
/
xcsoar.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Revert "Device/Driver/LX: Add small delay after baud rate change"
[xcsoar.git]
/
test
/
tools
/
testall.pl
blob
79a1258e0b529bf4d2189346531c859a91dbc523
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
];
12
}
13
die
"Unknown test file type -
$test_file
\n
"
;
14
},
15
});
16
$harness
->
runtests
(
@ARGV
);