This test doesn't require artifact checking but when bundled in the same
directory with the shell based tests, the `system:clang:tsan` job was
failing non-deterministically.
};
controls {
- inet 10.53.0.4 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
+ inet 10.53.0.1 port @CONTROLPORT@ allow { any; } keys { rndc_key; };
};
options {
pid-file "named.pid";
- listen-on port @PORT@ {10.53.0.4;};
+ listen-on port @PORT@ {10.53.0.1;};
};
zone "." { type mirror; };
This test pulls the root zone from the Internet, so let's only run
it when CI_ENABLE_LIVE_INTERNET_TESTS is set.
"""
- ns4 = servers["ns4"]
- with ns4.watch_log_from_start() as watch_log:
+ ns1 = servers["ns1"]
+ with ns1.watch_log_from_start() as watch_log:
# TimeoutError is raised if the line is not found and the test will fail.
watch_log.wait_for_line("Transfer status: success")