commit
571044ad8a
2 changed files with 3 additions and 0 deletions
|
@ -994,8 +994,10 @@ def _test_symbols() -> Dict[str, Any]:
|
||||||
subtest=subtest,
|
subtest=subtest,
|
||||||
run_tests=run_tests,
|
run_tests=run_tests,
|
||||||
join_all=join_all,
|
join_all=join_all,
|
||||||
|
retry=retry,
|
||||||
serial_stdout_off=serial_stdout_off,
|
serial_stdout_off=serial_stdout_off,
|
||||||
serial_stdout_on=serial_stdout_on,
|
serial_stdout_on=serial_stdout_on,
|
||||||
|
Machine=Machine, # for typing
|
||||||
)
|
)
|
||||||
return general_symbols
|
return general_symbols
|
||||||
|
|
||||||
|
|
|
@ -85,6 +85,7 @@ in import ./make-test-python.nix ({ pkgs, ...} : {
|
||||||
self = clientv4 if type == 4 else clientv6
|
self = clientv4 if type == 4 else clientv6
|
||||||
out = self.succeed(f"host -{type} -t {rr} {query}").rstrip()
|
out = self.succeed(f"host -{type} -t {rr} {query}").rstrip()
|
||||||
self.log(f"output: {out}")
|
self.log(f"output: {out}")
|
||||||
|
import re
|
||||||
assert re.search(
|
assert re.search(
|
||||||
expected, out
|
expected, out
|
||||||
), f"DNS IPv{type} query on {query} gave '{out}' instead of '{expected}'"
|
), f"DNS IPv{type} query on {query} gave '{out}' instead of '{expected}'"
|
||||||
|
|
Loading…
Reference in a new issue