JINMEI Tatuya
fbf11f41c3
[master] Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10
2013-02-06 09:55:47 -08:00
JINMEI Tatuya
733d42fa3d
[master] adjust latest code for the changes to isc.dns python constants.
...
with one minor regression fix.
2013-02-06 09:55:08 -08:00
JINMEI Tatuya
e500518535
[master] Merge branch 'trac1866'
...
fixed Conflicts:
src/bin/ddns/tests/ddns_test.py
src/bin/xfrin/tests/xfrin_test.py
src/lib/dns/python/tests/zone_checker_python_test.py
src/lib/python/isc/ddns/tests/session_tests.py
2013-02-06 09:16:41 -08:00
Jeremy C. Reed
bfefbfda28
[master]Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10
2013-02-06 10:47:22 -06:00
Jeremy C. Reed
4d074c3e70
[master] add NetBSD support
...
Actually the support was already there.
Renamed the OpenBSD class to NetBSD (since it was first)
and then use it for OpenBSD too (and NetBSD).
This is for ticket #2692 . It was reviewed on jabber.
2013-02-06 10:44:00 -06:00
Shane Kerr
f7a26a8f9e
Fix some memory leaks.
2013-02-06 17:41:10 +01:00
Michal 'vorner' Vaner
2a723e7e4b
[1924] Don't use real network IO in the test
...
Mock the low-level sending method and don't rely on network IO to read
it from the other end.
TODO: Remove the support for reading the other end.
2013-02-06 17:16:41 +01:00
Jeremy C. Reed
89fbc1a1f4
[master] allow sysinfo to provide some generic output on unknown system
...
This is for ticket #2128 . It was reviewed and discussed on jabber.
This extends SysInfoPOSIX to get the hostname and the load average.
Then as a fallback for unknown systems it uses the SysInfoPOSIX.
(By the way, some information is looked up twice, but this
happened before this patch, but now happens for a couple more things.)
2013-02-06 09:52:50 -06:00
Michal 'vorner' Vaner
6e489c0c04
[1924] (minor) More comment tweaks
2013-02-06 16:49:28 +01:00
Michal 'vorner' Vaner
73709cdf80
[1924] (minor) Comment tweaks
2013-02-06 16:10:34 +01:00
Michal 'vorner' Vaner
f29a543f5e
[1924] Consider EPIPE and similar as no recipient
...
If an EPIPE is received in attempt to send a message, consider it
there's no recipient. This is still not perfect, since there may be data
in queue and before the socket is handled, it would be just appended.
Or, if the other socket is closed before the whole queue is sent there,
the messages are silently blackholed. But fully tracking each message
would be too much work for this ticket.
2013-02-06 16:06:01 +01:00
Michal 'vorner' Vaner
070dcf030b
[1924] Use constant for the error code too
2013-02-06 14:53:31 +01:00
Jelte Jansen
3b03a16056
[2145] Fix trivial typo in docstring
2013-02-06 11:52:50 +01:00
Shane Kerr
564f4b8990
Fix typo in comments.
2013-02-06 11:43:28 +01:00
JINMEI Tatuya
005cba1c8d
[master] make sure the top-level bind10 program honors from-build env.
...
without this lettuce tests doesn't work in-source.
a kind of regression due to #1901
(cherry picked from commit 0749f9e194
)
2013-02-06 10:21:54 +01:00
Marcin Siodelski
d85b2e22c5
[2657] Minor: corrected some typos.
2013-02-06 10:20:33 +01:00
Yoshitaka Aharen
5a6d38e1f7
Merge branch 'trac2157_2' into trac2157_merge
...
Conflicts:
ChangeLog
configure.ac
src/bin/auth/Makefile.am
src/bin/auth/auth_srv.cc
src/bin/auth/auth_srv.h
src/bin/auth/b10-auth.xml.pre
src/bin/auth/statistics.cc
src/bin/auth/statistics.h
src/bin/auth/statistics_items.h
src/bin/auth/tests/Makefile.am
src/bin/auth/tests/auth_srv_unittest.cc
src/bin/auth/tests/statistics_unittest.cc
src/lib/statistics/counter.h
src/lib/statistics/counter_dict.h
tests/lettuce/configurations/example.org.inmem.config
2013-02-06 17:40:34 +09:00
Mukund Sivaraman
db77f1f08e
[2650] Initialize member variable in constructor
2013-02-06 10:56:46 +05:30
Mukund Sivaraman
2284240947
[2650] Initialize member variable in constructor
2013-02-06 10:50:32 +05:30
Mukund Sivaraman
aeda8e4862
[2650] Remove unused member variable
2013-02-06 10:48:17 +05:30
JINMEI Tatuya
64fb39c963
[2145] (unrelated) cleanup: rename bind10_test.py to init_test.py.
...
simply because it makes more sense in terms of what's tested.
2013-02-05 19:52:38 -08:00
JINMEI Tatuya
3a185f5924
[2145] removed now-unecessary python paths from some run-xxx wrapper scripts
2013-02-05 19:03:17 -08:00
JINMEI Tatuya
b43c93c8cb
[2145] added some comments about in-source test setup for bind10 script
2013-02-05 18:50:56 -08:00
Naoki Kambe
ffd4a283b1
[2225_statistics_3] change assertGreater() to assertGreaterEqual()
...
http://git.bind10.isc.org/~tester/builder//BIND10-cppcheck/20130129171501-FreeBSD8-amd64-GCC/logs/unittests.out
http://git.bind10.isc.org/~tester/builder//BIND10-cppcheck/20130205115001-FreeBSD8-amd64-GCC/logs/unittests.out
As the above results, on this platform, it doesn't mostly return an
accurate float of seconds which is less than 1.0. The above failure
happened at line 203 in counters_test.py , but also at line 142 there
is probably the same problem. This fix is similar to
89fd37be8d
.
2013-02-06 09:30:13 +09:00
JINMEI Tatuya
0749f9e194
[2145] make sure the top-level bind10 program honors from-build env.
...
without this lettuce tests doesn't work in-source.
a kind of regression due to #1901 , not a result of this branch.
2013-02-05 15:45:12 -08:00
JINMEI Tatuya
39c1d35378
[2145] remove all imports at the isc pakcage level.
2013-02-05 15:38:36 -08:00
JINMEI Tatuya
2a1d32f161
[2145] imported isc.config explicilty.
2013-02-05 15:34:36 -08:00
JINMEI Tatuya
d761599974
[2145] import specific isc.XXX, instead of the whole 'isc' packages.
2013-02-05 15:28:59 -08:00
JINMEI Tatuya
ebeb792396
[2145] import isc.config explicitly, instead of the whole 'isc' package.
2013-02-05 15:28:21 -08:00
JINMEI Tatuya
aa4dcd59d9
[2145] import isc.config explicitly, rather than hoping catch-all with 'isc'.
2013-02-05 14:39:21 -08:00
JINMEI Tatuya
8df1853f98
[2145] explicitly imported isc.log.
2013-02-05 14:33:28 -08:00
JINMEI Tatuya
1ec905f87e
[2661] deal with space after -L in python-config output; it helps some solaris.
2013-02-05 13:49:10 -08:00
JINMEI Tatuya
936279ca98
[master] Merge branch 'master' of ssh://git.bind10.isc.org/var/bind10/git/bind10
2013-02-05 09:21:05 -08:00
JINMEI Tatuya
6dae0d1f01
[master] Merge branch 'trac2617'
2013-02-05 09:10:32 -08:00
JINMEI Tatuya
37743e4ec1
[2617] fixed a typo in a comment line.
2013-02-05 09:10:12 -08:00
Marcin Siodelski
8b2f7c3255
[2657] Changes to the DHCP configuration example as a result of the review.
2013-02-05 17:59:14 +01:00
Jeremy C. Reed
06fa3ca48f
[master] update version to today's timestamp
2013-02-05 10:19:46 -06:00
Jeremy C. Reed
2baf0ceb67
[master] minor manpage improvements
...
update date
update a copyright year
add a history sentence about rename
space between BIND & 10 (consistent style)
fix manual section number in a reference
change date (it was in Dutch anyways :)
2013-02-05 10:17:07 -06:00
Jelte Jansen
6ded04bbd0
[master] Update ChangeLog for merge of #1901
2013-02-05 15:11:11 +01:00
Jelte Jansen
bae3798603
[master] Merge branch 'trac1901'
2013-02-05 14:47:05 +01:00
Stephen Morris
6dc113cc0e
[2657] Final minor changes as part of the review
2013-02-05 12:46:20 +00:00
Stephen Morris
28c7d97211
[2657] Merge branch 'trac2657' of ssh://git.bind10.isc.org/var/bind10/git/bind10 into trac2657
...
Conflicts:
doc/guide/bind10-guide.xml
2013-02-05 12:31:03 +00:00
Stephen Morris
3c200a3dec
[2657] More editing of the DHCP sections of the BIND 10 Guide
2013-02-05 12:24:42 +00:00
Mukund Sivaraman
3a8e933c07
[master] Use serial-tests only where available
2013-02-05 17:14:02 +05:30
Yoshitaka Aharen
b9be907e65
[2157] add a comment for lettuce test: check for Auth receives 'getstats'
2013-02-05 20:29:14 +09:00
Jelte Jansen
87da92a958
[1901] Remove sys.argv[0] from rename() call in b10-init
2013-02-05 12:04:09 +01:00
Michal 'vorner' Vaner
f7a77b8a0b
Use serial tests option
...
We don't take any benefit from the parallel harness, since we have only
one test binary in each directory, and automake can't parallelize that.
But it was hiding test output, which was annoying.
Acked on the mailing list.
2013-02-05 10:52:33 +01:00
Jeremy C. Reed
ee5c66336b
[master] remove __pycache__ directory with distclean
...
(reported by emhn: left over after a distclean)
Some of the makefiles clear that but not that one. We do
automate the distclean (via distcheck) as part of our
buildfarm. But I think this __pycache__ was introduced in python3.2 and
those build systems don't have it.
This is trivial so didn't get review.
2013-02-04 18:03:27 -06:00
Jeremy C. Reed
6eb06132ab
[master] don't include run.sh in distfile
...
The run.sh.in is in the distfile.
(issue reported by emhn: was removed with distclean but was in tarball)
Trivial so didn't get review.
2013-02-04 18:01:30 -06:00
JINMEI Tatuya
6b09c6be32
[1866] added note about not-implemented RR types dict in rdata/template.h.
2013-02-04 14:23:47 -08:00