cpython/Lib/dos-8x3/test_fcn.py

34 lines
905 B
Python
Raw Normal View History

1997-04-02 02:13:34 -04:00
#! /usr/bin/env python
"""Test program for the fcntl C module.
Roger E. Masse
"""
import struct
import fcntl
import FCNTL
1997-12-09 12:56:41 -04:00
import os, sys
1997-04-02 02:13:34 -04:00
from test_support import verbose
filename = '/tmp/delete-me'
# the example from the library docs
f = open(filename,'w')
1997-05-22 17:48:03 -03:00
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETFL, os.O_NONBLOCK)
1997-04-02 02:13:34 -04:00
if verbose:
1997-05-22 17:48:03 -03:00
print 'Status from fnctl with O_NONBLOCK: ', rv
1997-04-02 02:13:34 -04:00
1997-12-09 12:56:41 -04:00
if sys.platform in ('netbsd1', 'freebsd2', 'freebsd3'):
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)
1997-04-02 02:13:34 -04:00
if verbose:
1997-05-22 17:48:03 -03:00
print 'struct.pack: ', `lockdata`
1997-04-02 02:13:34 -04:00
rv = fcntl.fcntl(f.fileno(), FCNTL.F_SETLKW, lockdata)
if verbose:
1997-05-22 17:48:03 -03:00
print 'String from fcntl with F_SETLKW: ', `rv`
1997-04-02 02:13:34 -04:00
f.close()
os.unlink(filename)