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

Fix sync issue in mm_ping scenario leading to sporadic failures #18759

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions schedule/functional/mm_ping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ schedule:
- installation/bootloader_start
- boot/boot_to_desktop
- network/setup_multimachine
- network/conclude_multimachine
20 changes: 20 additions & 0 deletions tests/network/conclude_multimachine.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# SUSE's openQA tests
#
# Copyright SUSE LLC
# SPDX-License-Identifier: FSFAP

# Summary: Waits for parallel children to finish
# Maintainer: Marius Kittler <mkittler@suse.de>

use base 'basetest';
use strict;
use warnings;
use testapi;
use mmapi;

sub run {
my $hostname = get_required_var('HOSTNAME');
wait_for_children if $hostname =~ m/server|master/;
}

1;
Loading