mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 12:00:00 -04:00
Fix lib/isc/tests/socket_test hangs
This commit is contained in:
parent
dcb38db695
commit
0fe149b2fa
2 changed files with 1 additions and 3 deletions
|
|
@ -1016,7 +1016,6 @@ system:mutexatomics:sid:amd64:
|
|||
dependencies:
|
||||
- mutexatomics:sid:amd64
|
||||
needs: ["mutexatomics:sid:amd64"]
|
||||
allow_failure: true
|
||||
|
||||
unit:mutexatomics:sid:amd64:
|
||||
<<: *debian_sid_amd64_image
|
||||
|
|
@ -1024,7 +1023,6 @@ unit:mutexatomics:sid:amd64:
|
|||
dependencies:
|
||||
- mutexatomics:sid:amd64
|
||||
needs: ["mutexatomics:sid:amd64"]
|
||||
allow_failure: true
|
||||
|
||||
# Jobs for Clang builds on Debian Stretch (amd64)
|
||||
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ typedef struct {
|
|||
|
||||
static void
|
||||
completion_init(completion_t *completion) {
|
||||
atomic_store(&completion->done, false);
|
||||
atomic_init(&completion->done, false);
|
||||
completion->socket = NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue