1# Before `make install' is performed this script should be runnable with
2# `make test'. After `make install' it should work as `perl test.t'
3
4######################### We start with some black magic to print on failure.
5
6use Test;
7BEGIN { plan tests => 1; $loaded = 0}
8END { ok $loaded;}
9
10# Just make sure everything compiles
11use File::NFSLock;
12use Fcntl qw(O_CREAT O_RDWR O_RDONLY O_TRUNC O_APPEND LOCK_EX LOCK_SH LOCK_NB);
13#use POSIX qw(tmpnam);
14
15$loaded = 1;
16
17######################### End of black magic.
18
19# Insert your test code below (better if it prints "ok 13"
20# (correspondingly "not ok 13") depending on the success of chunk 13
21# of the test code):
22