summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_array.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-09 20:51:54 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-09 20:51:54 (GMT)
commitc9f8f1467ee67e43afdd00cff72643edeb2b37ba (patch)
treea91a7770af7d62c1292a40d50b38e1d2d5c4eef1 /Lib/test/test_array.py
parent2095d24842e34f7f85d5025767134badbf9dd44f (diff)
downloadcpython-c9f8f1467ee67e43afdd00cff72643edeb2b37ba.zip
cpython-c9f8f1467ee67e43afdd00cff72643edeb2b37ba.tar.gz
cpython-c9f8f1467ee67e43afdd00cff72643edeb2b37ba.tar.bz2
Use TESTFN instead of /etc/passwd and /dev/null as test files.
Diffstat (limited to 'Lib/test/test_array.py')
-rwxr-xr-xLib/test/test_array.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/Lib/test/test_array.py b/Lib/test/test_array.py
index 7474a27..832f192 100755
--- a/Lib/test/test_array.py
+++ b/Lib/test/test_array.py
@@ -3,7 +3,7 @@
Roger E. Masse
"""
import array
-from test_support import verbose
+from test_support import verbose, TESTFN, unlink
def main():
@@ -12,10 +12,11 @@ def main():
for type in (['b', 'h', 'i', 'l', 'f', 'd']):
testtype(type, 1)
+ unlink(TESTFN)
+
def testtype(type, example):
-
a = array.array(type)
a.append(example)
if verbose:
@@ -27,10 +28,14 @@ def testtype(type, example):
a.byteswap()
if a.typecode == 'c':
- f = open('/etc/passwd', 'r')
+ f = open(TESTFN, "w")
+ f.write("The quick brown fox jumps over the lazy dog.\n")
+ f.close()
+ f = open(TESTFN, 'r')
a.fromfile(f, 10)
+ f.close()
if verbose:
- print 'char array with 10 bytes of /etc/passwd appended: ', a
+ print 'char array with 10 bytes of TESTFN appended: ', a
a.fromlist(['a', 'b', 'c'])
if verbose:
print 'char array with list appended: ', a
@@ -38,8 +43,9 @@ def testtype(type, example):
a.insert(0, example)
if verbose:
print 'array of %s after inserting another:' % a.typecode, a
- f = open('/dev/null', 'w')
+ f = open(TESTFN, 'w')
a.tofile(f)
+ f.close()
a.tolist()
a.tostring()
if verbose:
@@ -48,5 +54,6 @@ def testtype(type, example):
print 'array of %s converted to a string: ' \
% a.typecode, a.tostring()
+
main()