The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!./perl

# $Id: user.t,v 0.2 1999/12/07 20:51:05 ram Exp ram $
#
#  @COPYRIGHT@
#
# $Log: user.t,v $
# Revision 0.2  1999/12/07 20:51:05  ram
# Baseline for 0.2 release.
#

use LockFile::Simple qw(lock trylock unlock);

print "1..2\n";

my $locker = LockFile::Simple->make(
	-nfs => 1,	# may happen over NFS
	-hold => 0,	# no forced unlocking
);

print "not " unless $locker->hold == 0;
print "ok 1\n";

print "not " unless $locker->nfs == 1;
print "ok 2\n";