[bind10-dev] failed unittests master 296e119946e9fb8d6eebdabf6eb166f47c47fbd0

Jeremy C. Reed jreed at isc.org
Mon Oct 29 18:30:46 UTC 2012


On Mon, 29 Oct 2012, tester at isc.org wrote:

> Subject: failed unittests master 296e119946e9fb8d6eebdabf6eb166f47c47fbd0
> 
> http://git.bind10.isc.org/~tester/builder//BIND10/20121024203832-FreeBSD8-i386/logs/unittests.out
> 
> http://git.bind10.isc.org/~tester/builder//builder.html
> 
> master 296e119946e9fb8d6eebdabf6eb166f47c47fbd0 1351099044
> 
> Last successful master revision (for unittests):
> 2ce8ea317bf920ec540ed40f10738cb2f65426df

This was a test I just manually killed from last week. These were 
running today:

$ ps auxww | grep b10
jreed 12578  0.0  8.9 191644 45368  ??  IN   Wed09PM   0:01.58 
/usr/local/bin/python3.1 
/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/tests/b10-stats-httpd_test.py
jreed 63426  0.0  0.2 190180  1192  ??  IN   22Oct12   0:01.61 
/usr/local/bin/python3.1 
/b/work/BIND10-distcheck/20121022153001-FreeBSD8-i386/build/bind10-devel-20120817/_build/../src/bin/stats/tests/b10-stats-httpd_test.py

(I also saw problems like this on previous weeks.)

When I run "make check" in src/bin/stats/tests, it ends with:

2012-10-29 18:23:52.805 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_STARTED listening on 127.0.0.1#8005
2012-10-29 18:23:52.810 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_STARTED listening on ::1#8002
2012-10-29 18:23:52.816 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_STARTED listening on 127.0.0.1#8006
2012-10-29 18:23:52.956 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_SHUTDOWN shutting down
2012-10-29 18:23:52.956 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_CLOSING closing 127.0.0.1#8002
2012-10-29 18:23:52.996 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_SHUTDOWN shutting down
2012-10-29 18:23:52.996 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_CLOSING closing 127.0.0.1#8003
2012-10-29 18:23:53.065 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_SHUTDOWN shutting down
2012-10-29 18:23:53.065 INFO  [b10-stats-httpd.stats-httpd] 
STATHTTPD_CLOSING closing 127.0.0.1#8004

but the test never ends.

So I pressed Ctrl-C a few times:

^C^C^C^CTraceback (most recent call last):
  File "/usr/local/lib/python3.1/socket.py", line 264, in getfqdn
    hostname, aliases, ipaddrs = gethostbyaddr(name)
socket.gaierror: [Errno 8] hostname nor servname provided, or not known

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/tests/b10-stats-httpd_test.py", 
line 1353, in <module>
    unittest.main()
  File "/usr/local/lib/python3.1/unittest.py", line 1566, in __init__
    self.runTests()
  File "/usr/local/lib/python3.1/unittest.py", line 1611, in runTests
    self.result = testRunner.run(self.test)
  File "/usr/local/lib/python3.1/unittest.py", line 1483, in run
    test(result)
  File "/usr/local/lib/python3.1/unittest.py", line 1138, in __call__
    return self.run(*args, **kwds)
  File "/usr/local/lib/python3.1/unittest.py", line 1134, in run
    test(result)
  File "/usr/local/lib/python3.1/unittest.py", line 1138, in __call__
    return self.run(*args, **kwds)
  File "/usr/local/lib/python3.1/unittest.py", line 1134, in run
    test(result)
  File "/usr/local/lib/python3.1/unittest.py", line 526, in __call__
    return self.run(*args, **kwds)
  File "/usr/local/lib/python3.1/unittest.py", line 480, in run
    testMethod()
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/tests/b10-stats-httpd_test.py", 
line 766, in test_httpd
    self.stats_httpd = MyStatsHttpd(server_addresses)
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/tests/test_utils.py", 
line 481, in __init__
    stats_httpd.StatsHttpd.__init__(self)
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/stats_httpd.py", 
line 193, in __init__
    self.open_httpd()
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/stats_httpd.py", 
line 239, in open_httpd
    self.httpd.append(self._open_httpd(addr))
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/stats_httpd.py", 
line 255, in _open_httpd
    self.write_log)
  File 
"/b/work/BIND10/20121024203832-FreeBSD8-i386/build/src/bin/stats/stats_httpd.py", 
line 162, in __init__
    http.server.HTTPServer.__init__(self, server_address, handler)
  File "/usr/local/lib/python3.1/socketserver.py", line 400, in __init__
    self.server_bind()
  File "/usr/local/lib/python3.1/http/server.py", line 129, in 
server_bind
    self.server_name = socket.getfqdn(host)
  File "/usr/local/lib/python3.1/socket.py", line 264, in getfqdn
    hostname, aliases, ipaddrs = gethostbyaddr(name)
KeyboardInterrupt


This is a FreeBSD 8.1-RELEASE on i386.


More information about the bind10-dev mailing list