From 70271f1397750f7a46154308c012a799bb67a676 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 4 Oct 2024 16:19:46 -0700 Subject: [PATCH] toolbox: handle changed uname string in Rawhide Signed-off-by: Adam Williamson --- tests/toolbox.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/toolbox.pm b/tests/toolbox.pm index 1013f0fe..676663f0 100644 --- a/tests/toolbox.pm +++ b/tests/toolbox.pm @@ -37,8 +37,9 @@ sub run { } # check to see if toolbox can list container assert_script_run "toolbox list | grep container1"; - # run a specific command on a given container - validate_script_output "toolbox run --container container1 uname -a", sub { m/Linux toolbox/ }; + # run a specific command on a given container, note as of 2024-10 + # the output changed from "Linux toolbox" to "Linux toolbx" + validate_script_output "toolbox run --container container1 uname -a", sub { m/Linux toolbo?x/ }; # enter container to test type_string "toolbox enter container1\n"; # holds on to the screen