File: user.t

package info (click to toggle)
liblockfile-simple-perl 0.208-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 200 kB
  • sloc: perl: 538; makefile: 2; ansic: 1
file content (25 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!./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";