diff --git a/schedule/functional/mm_ping.yaml b/schedule/functional/mm_ping.yaml index f5823f33e781..2146072c400e 100644 --- a/schedule/functional/mm_ping.yaml +++ b/schedule/functional/mm_ping.yaml @@ -8,3 +8,4 @@ schedule: - installation/bootloader_start - boot/boot_to_desktop - network/setup_multimachine + - network/conclude_multimachine diff --git a/tests/network/conclude_multimachine.pm b/tests/network/conclude_multimachine.pm new file mode 100644 index 000000000000..2094b9500af3 --- /dev/null +++ b/tests/network/conclude_multimachine.pm @@ -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 + +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;