[PATCH] xtf: fix argo test parameters

dmukhin@ford.com posted 1 patch 1 month, 4 weeks ago
Patches applied successfully (tree, apply log)
git fetch https://gitlab.com/xen-project/patchew/xen tags/patchew/20260212231504.3135755-3-dmukhin@ford.com
automation/scripts/include/xtf-runner | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] xtf: fix argo test parameters
Posted by dmukhin@ford.com 1 month, 4 weeks ago
The mac-permissive= option is currently ignored because Argo configuration
parameters are comma-separated.

Fix the missing comma in the XTF test arguments.

Fixes: 150c6ef45922 ("CI: add argo x86 XTF test")
Signed-off-by: Denis Mukhin <dmukhin@ford.com>
---
CI run: https://gitlab.com/xen-project/people/dmukhin/xen/-/pipelines/2323076582
---
 automation/scripts/include/xtf-runner | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/automation/scripts/include/xtf-runner b/automation/scripts/include/xtf-runner
index 43ff2d4d88c7..d1ef888465c3 100644
--- a/automation/scripts/include/xtf-runner
+++ b/automation/scripts/include/xtf-runner
@@ -69,7 +69,7 @@ function xtf_build_cmdline()
     local xtf_name=$2
     declare -a cmdline=()
     declare -A per_test_args=(
-        [argo]="argo=1 mac-permissive=1"
+        [argo]="argo=1,mac-permissive=1"
     )
 
     cmdline+=("${XEN_CMDLINE}")
-- 
2.52.0
Re: [PATCH] xtf: fix argo test parameters
Posted by Stefano Stabellini 1 month, 4 weeks ago
On Thu, 12 Feb 2026, dmukhin@ford.com wrote:
> The mac-permissive= option is currently ignored because Argo configuration
> parameters are comma-separated.
> 
> Fix the missing comma in the XTF test arguments.
> 
> Fixes: 150c6ef45922 ("CI: add argo x86 XTF test")
> Signed-off-by: Denis Mukhin <dmukhin@ford.com>

Acked-by: Stefano Stabellini <sstabellini@kernel.org>


> ---
> CI run: https://gitlab.com/xen-project/people/dmukhin/xen/-/pipelines/2323076582
> ---
>  automation/scripts/include/xtf-runner | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/automation/scripts/include/xtf-runner b/automation/scripts/include/xtf-runner
> index 43ff2d4d88c7..d1ef888465c3 100644
> --- a/automation/scripts/include/xtf-runner
> +++ b/automation/scripts/include/xtf-runner
> @@ -69,7 +69,7 @@ function xtf_build_cmdline()
>      local xtf_name=$2
>      declare -a cmdline=()
>      declare -A per_test_args=(
> -        [argo]="argo=1 mac-permissive=1"
> +        [argo]="argo=1,mac-permissive=1"
>      )
>  
>      cmdline+=("${XEN_CMDLINE}")
> -- 
> 2.52.0
>