diff options
author | Guido van Rossum <guido@python.org> | 1999-04-08 20:27:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-04-08 20:27:54 (GMT) |
commit | 9a744a9dd771ee8997bdebaf47ff999b5adc9733 (patch) | |
tree | 5060172f273b17409371c9ad1441b2a8bbc315be /Lib/dos-8x3/test_pop.py | |
parent | 6d0de99d8da806798ce0b896159bd07fce71c0dc (diff) | |
download | cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.zip cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.gz cpython-9a744a9dd771ee8997bdebaf47ff999b5adc9733.tar.bz2 |
The usual
Diffstat (limited to 'Lib/dos-8x3/test_pop.py')
-rw-r--r-- | Lib/dos-8x3/test_pop.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/dos-8x3/test_pop.py b/Lib/dos-8x3/test_pop.py new file mode 100644 index 0000000..be79f3c --- /dev/null +++ b/Lib/dos-8x3/test_pop.py @@ -0,0 +1,17 @@ +#! /usr/bin/env python +"""Test script for popen2.py + Christian Tismer +""" + +# popen2 contains its own testing routine +# which is especially useful to see if open files +# like stdin can be read successfully by a forked +# subprocess. + +def main(): + from os import fork # skips test through ImportError + import popen2 + popen2._test() + +main() + |