Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable soft-failure for zVM in dns_srv #5165

Merged
merged 1 commit into from
Jun 5, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/console/dns_srv.pm
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ sub run {
# verify dns server responds to anything
my $e = script_run "host localhost localhost";
if ($e) {
record_soft_failure 'Bug 1064438: "bind" cannot resolve localhost' if get_var('S390_ZKVM');
record_soft_failure 'Bug 1064438: "bind" cannot resolve localhost' if check_var('ARCH', 's390x');
record_info 'Skip the entire test on bridged networks (e.g. Xen, Hyper-V)' if (is_bridged_networking);
return if (is_bridged_networking || get_var('S390_ZKVM'));
return if (is_bridged_networking || check_var('ARCH', 's390x'));
die "Command 'host localhost localhost' failed, cannot resolv localhost";
}
}
Expand Down