1996-12-17 17:41:09 +00:00
|
|
|
#! /usr/bin/env python
|
|
|
|
"""Test program for the fcntl C module.
|
|
|
|
Roger E. Masse
|
|
|
|
"""
|
|
|
|
import struct
|
|
|
|
import fcntl
|
|
|
|
import FCNTL
|
1997-12-02 20:30:29 +00:00
|
|
|
import os, sys
|
1996-12-20 22:36:52 +00:00
|
|
|
from test_support import verbose
|
1996-12-17 17:41:09 +00:00
|
|
|
|
|
|
|
filename = '/tmp/delete-me'
|
|
|
|
|
|
|
|
# the example from the library docs
|
|
|
|
f = open(filename,'w')
|
1997-05-12 22:15:52 +00:00
|
|
|
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETFL, os.O_NONBLOCK)
|
1996-12-17 17:41:09 +00:00
|
|
|
if verbose:
|
1997-05-12 22:15:52 +00:00
|
|
|
print 'Status from fnctl with O_NONBLOCK: ', rv
|
1996-12-17 17:41:09 +00:00
|
|
|
|
1999-02-23 04:13:37 +00:00
|
|
|
if sys.platform in ('netbsd1',
|
|
|
|
'freebsd2', 'freebsd3',
|
1999-04-19 17:22:12 +00:00
|
|
|
'bsdos2', 'bsdos3', 'bsdos4',
|
|
|
|
'openbsd', 'openbsd2'):
|
1997-12-02 20:30:29 +00:00
|
|
|
lockdata = struct.pack('lxxxxlxxxxlhh', 0, 0, 0, FCNTL.F_WRLCK, 0)
|
|
|
|
elif sys.platform in ['aix3', 'aix4']:
|
|
|
|
lockdata = struct.pack('hhlllii', FCNTL.F_WRLCK, 0, 0, 0, 0, 0, 0)
|
|
|
|
else:
|
|
|
|
lockdata = struct.pack('hhllhh', FCNTL.F_WRLCK, 0, 0, 0, 0, 0)
|
1996-12-17 17:41:09 +00:00
|
|
|
if verbose:
|
1997-05-09 02:06:05 +00:00
|
|
|
print 'struct.pack: ', `lockdata`
|
1996-12-17 17:41:09 +00:00
|
|
|
|
|
|
|
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata)
|
|
|
|
if verbose:
|
1997-05-09 02:06:05 +00:00
|
|
|
print 'String from fcntl with F_SETLKW: ', `rv`
|
1996-12-17 17:41:09 +00:00
|
|
|
|
|
|
|
f.close()
|
|
|
|
os.unlink(filename)
|