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

Soft fail on nfsstat -m with bsc#1140731 #7829

Merged
merged 1 commit into from
Jul 9, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion tests/console/yast2_nfs_server.pm
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use lockapi;
use mmapi;
use mm_network;
use nfs_common;
use version_utils 'is_sle';

sub run {
my ($self) = @_;
Expand Down Expand Up @@ -87,7 +88,12 @@ sub run {
validate_script_output("cat /mnt/file.txt", sub { m,success, }, 95);

# Check NFS version
validate_script_output "nfsstat -m", sub { m/vers=3/ };
if (is_sle('=12-sp1') && script_run 'nfsstat -m') {
record_soft_failure 'bsc#1140731';
}
else {
validate_script_output "nfsstat -m", sub { m/vers=3/ };
}

assert_script_run 'umount /mnt';

Expand Down