mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-25 06:03:40 +03:00
Merge pull request #7484 from poettering/sd-resolve-timeout
timeout sd-resolve tests
This commit is contained in:
commit
c9f034a10a
@ -200,7 +200,6 @@ int fd_wait_for_event(int fd, int event, usec_t t) {
|
||||
r = ppoll(&pollfd, 1, t == USEC_INFINITY ? NULL : timespec_store(&ts, t), NULL);
|
||||
if (r < 0)
|
||||
return -errno;
|
||||
|
||||
if (r == 0)
|
||||
return 0;
|
||||
|
||||
|
@ -890,6 +890,8 @@ _public_ int sd_resolve_wait(sd_resolve *resolve, uint64_t timeout_usec) {
|
||||
|
||||
if (r < 0)
|
||||
return r;
|
||||
if (r == 0)
|
||||
return -ETIMEDOUT;
|
||||
|
||||
return sd_resolve_process(resolve);
|
||||
}
|
||||
|
@ -34,6 +34,8 @@
|
||||
#include "socket-util.h"
|
||||
#include "string-util.h"
|
||||
|
||||
#define TEST_TIMEOUT_USEC (20*USEC_PER_SEC)
|
||||
|
||||
static int getaddrinfo_handler(sd_resolve_query *q, int ret, const struct addrinfo *ai, void *userdata) {
|
||||
const struct addrinfo *i;
|
||||
|
||||
@ -102,9 +104,18 @@ int main(int argc, char *argv[]) {
|
||||
|
||||
/* Wait until all queries are completed */
|
||||
for (;;) {
|
||||
r = sd_resolve_wait(resolve, (uint64_t) -1);
|
||||
r = sd_resolve_wait(resolve, TEST_TIMEOUT_USEC);
|
||||
if (r == 0)
|
||||
break;
|
||||
if (r == -ETIMEDOUT) {
|
||||
/* Let's catch time-outs here, so that we can run safely in a CI that has no reliable DNS. Note
|
||||
* that we invoke exit() directly here, as the stuck NSS call will not allow us to exit
|
||||
* cleanly. */
|
||||
|
||||
log_notice_errno(r, "sd_resolve_wait() timed out, but that's OK");
|
||||
exit(EXIT_SUCCESS);
|
||||
break;
|
||||
}
|
||||
if (r < 0) {
|
||||
log_error_errno(r, "sd_resolve_wait(): %m");
|
||||
assert_not_reached("sd_resolve_wait() failed");
|
||||
|
Loading…
x
Reference in New Issue
Block a user