mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 18:09:11 -04:00
Extend loop count by 1 to account for non-exact timing in usleep().
This commit is contained in:
parent
d003949cdb
commit
3012e1ad9b
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ dns_dbfind_staleok_test(void **state) {
|
|||
count = 0;
|
||||
do {
|
||||
count++;
|
||||
assert_in_range(count, 0, 20); /* loop sanity */
|
||||
assert_in_range(count, 1, 21); /* loop sanity */
|
||||
assert_int_equal(rdataset.attributes &
|
||||
DNS_RDATASETATTR_STALE,
|
||||
0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue