diff options
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_compile.py | 14 | ||||
-rw-r--r-- | Lib/test/test_socket.py | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py index 376369b..5a069d3 100644 --- a/Lib/test/test_compile.py +++ b/Lib/test/test_compile.py @@ -427,6 +427,20 @@ if 1: self.assert_(type(ast) == _ast.Module) co2 = compile(ast, '%s3' % fname, 'exec') self.assertEqual(co1, co2) + # the code object's filename comes from the second compilation step + self.assertEqual(co2.co_filename, '%s3' % fname) + + # raise exception when node type doesn't match with compile mode + co1 = compile('print(1)', '<string>', 'exec', _ast.PyCF_ONLY_AST) + self.assertRaises(TypeError, compile, co1, '<ast>', 'eval') + + # raise exception when node type is no start node + self.assertRaises(TypeError, compile, _ast.If(), '<ast>', 'exec') + + # raise exception when node has invalid children + ast = _ast.Module() + ast.body = [_ast.BoolOp()] + self.assertRaises(TypeError, compile, ast, '<ast>', 'exec') def test_main(): diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py index 2bec373..f4abffa 100644 --- a/Lib/test/test_socket.py +++ b/Lib/test/test_socket.py @@ -15,6 +15,14 @@ import array from weakref import proxy import signal +# Temporary hack to see why test_socket hangs on one buildbot +if os.environ.get('COMPUTERNAME') == "GRAPE": + def verbose_write(arg): + print(arg, file=sys.__stdout__) +else: + def verbose_write(arg): + pass + PORT = 50007 HOST = 'localhost' MSG = b'Michael Gilfix was here\n' @@ -22,15 +30,21 @@ MSG = b'Michael Gilfix was here\n' class SocketTCPTest(unittest.TestCase): def setUp(self): + verbose_write(self) self.serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) + verbose_write(str(self) + " socket created") global PORT PORT = test_support.bind_port(self.serv, HOST, PORT) + verbose_write(str(self) + " start listening") self.serv.listen(1) + verbose_write(str(self) + " started") def tearDown(self): + verbose_write(str(self) + " close") self.serv.close() self.serv = None + verbose_write(str(self) + " done") class SocketUDPTest(unittest.TestCase): |