[Python-Dev] test_logging hangs on Solaris 8
Skip Montanaro
skip@pobox.com
Fri, 25 Apr 2003 13:22:43 -0500
Using the latest version from CVS, on Solaris 8 test_logging hangs. Lots of
output, then:
...
INFO:root:Info index = 99
-- logging 100 at INFO, messages should be seen every 10 events --
-- logging 101 at INFO, messages should be seen every 10 events --
INFO:root:Info index = 100
INFO:root:Info index = 101
-- log_test2 end ---------------------------------------------------
-- log_test3 begin ---------------------------------------------------
Unfiltered...
INFO:a:Info 1
INFO:a.b:Info 2
INFO:a.c:Info 3
INFO:a.b.c:Info 4
INFO:a.b.c.d:Info 5
INFO:a.bb.c:Info 6
INFO:b:Info 7
INFO:b.a:Info 8
INFO:c.a.b:Info 9
INFO:a.bb:Info 10
Filtered with 'a.b'...
INFO:a.b:Info 2
INFO:a.b.c:Info 4
INFO:a.b.c.d:Info 5
-- log_test3 end ---------------------------------------------------
and it just sits there. ^C doesn't terminate it. I have to stop it w/ ^Z,
then "kill %1" it. I have the very latest source checked out. Any ideas?
Skip