From be81fea46adbddce8d7481d5c9aea1129b275b28 Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 12 Aug 2023 15:36:39 +0200 Subject: [PATCH] tests: Re-enable live migration tests for AMD These had to be previously disabled because a released binary has to be used in course of the test scenario. The necessary functionality is now supported with the release 34.0, thus these tests should now pass. Fixes: #5660 Signed-off-by: Anatol Belski --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 49241ea29..648e0f13d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -151,7 +151,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration-live-migration --integration -- -- --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog_local' + sh 'scripts/dev_cli.sh tests --integration-live-migration' } } stage('Run integration tests for musl') { @@ -169,7 +169,7 @@ pipeline { } steps { sh 'sudo modprobe openvswitch' - sh 'scripts/dev_cli.sh tests --integration-live-migration --libc musl -- -- --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog --skip live_migration::live_migration_parallel::test_live_upgrade_watchdog_local' + sh 'scripts/dev_cli.sh tests --integration-live-migration --libc musl' } } }