repo.or.cz
/
omd.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python: Fix build issues when using "make build_cached"
[omd.git]
/
t
/
01-basic_files.t
blob
0f8f547eab6ac479c2e8136e6532b005bfc285ec
1
#!/usr/bin/env perl
2
3
use
warnings
;
4
use
strict
;
5
use
Test
::
More
;
6
7
use
lib
(
't'
);
8
use
FindBin
;
9
use
lib
"
$FindBin
::Bin/lib/lib/perl5"
;
10
11
plan tests
=>
3
;
12
13
use_ok
(
"TestUtils"
)
or
BAIL_OUT
(
"fatal error in TestUtils"
);
14
15
my
$omd_bin
=
TestUtils
::
get_omd_bin
();
16
17
ok
(-
f
$omd_bin
,
$omd_bin
.
" exists"
);
18
ok
(-
x
$omd_bin
,
$omd_bin
.
" is executable"
);