]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#14853: remove test that was making too many assumptions about stdin. Patch by Elena...
authorEzio Melotti <ezio.melotti@gmail.com>
Thu, 25 Jul 2013 03:21:00 +0000 (05:21 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Thu, 25 Jul 2013 03:21:00 +0000 (05:21 +0200)
Lib/test/test_file.py

index a78ddf3d3cabfb6a4ba161728c67f2336af5d4bc..76b1694e98edd1311232f7bcd01708bb28f85e89 100644 (file)
@@ -148,16 +148,6 @@ class OtherFileTests:
                 f.close()
                 self.fail('%r is an invalid file mode' % mode)
 
-    def testStdin(self):
-        # This causes the interpreter to exit on OSF1 v5.1.
-        if sys.platform != 'osf1V5':
-            self.assertRaises((IOError, ValueError), sys.stdin.seek, -1)
-        else:
-            print((
-                '  Skipping sys.stdin.seek(-1), it may crash the interpreter.'
-                ' Test manually.'), file=sys.__stdout__)
-        self.assertRaises((IOError, ValueError), sys.stdin.truncate)
-
     def testBadModeArgument(self):
         # verify that we get a sensible error message for bad mode argument
         bad_mode = "qwerty"