repo.or.cz
/
monitoring-plugins.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add Libtap as a bundled library (does not change any behaviour without --enable-libtap)
[monitoring-plugins.git]
/
tap
/
tests
/
plan
/
sane
/
test.pl
blob
35c4ef2fa92652194ee3e5c5171d64e0665c11ce
1
#!/usr/bin/perl
2
3
use
warnings
;
4
use
strict
;
5
6
use
Test
::
More
;
7
8
my
$rc
=
0
;
9
10
$rc
=
plan tests
=>
1
;
11
diag
(
"Returned: "
.
sprintf
(
"
%d
"
,
$rc
));
12
13
$rc
=
ok
(
1
);
14
diag
(
"Returned:
$rc
"
);