From e53bcb54aa16c9bb90f600b67808377e545b0c2d Mon Sep 17 00:00:00 2001 From: Nestor Acuna Blanco Date: Wed, 16 Oct 2024 13:48:21 +0200 Subject: [PATCH] fix: fedora workloads definition in function tests This change resolves an issue where manually starting the Fedora end-to-end tests was not possible due to invalid workload values. It is important to note that the Fedora templates have changed the sizes, while the workloads remain the same, only including small, medium, and large. Signed-off-by: Nestor Acuna Blanco --- automation/test-linux.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/test-linux.sh b/automation/test-linux.sh index 47c65021..b97a7677 100755 --- a/automation/test-linux.sh +++ b/automation/test-linux.sh @@ -65,7 +65,7 @@ sizes=("tiny" "small" "medium" "large") workloads=("desktop" "server" "highperformance") if [[ $TARGET =~ fedora.* ]]; then - workloads=("small" "medium" "large") + sizes=("small" "medium" "large") fi if [[ $TARGET =~ centos6.* ]]; then