The bug appears during the execution of the hello world test from https://github.com/landerlini/vk-test-set/blob/main/vktestset/templates/000-hello-world.yaml .
It seems that args are not parsed correctly, in details, the test is requesting
command: ["/bin/bash", "-c"] args: ["echo hello world"]
but the hello world is not printed, meaning that the arguments are not parsed correctly.
A possible solution to solve this problem would be to create a bash file with the contents of the command and the args and then send this bash file to the container. So the content of the bash file for this example would be something like
The bug appears during the execution of the hello world test from https://github.com/landerlini/vk-test-set/blob/main/vktestset/templates/000-hello-world.yaml . It seems that args are not parsed correctly, in details, the test is requesting
command: ["/bin/bash", "-c"] args: ["echo hello world"]
but thehello world
is not printed, meaning that the arguments are not parsed correctly. A possible solution to solve this problem would be to create a bash file with the contents of the command and the args and then send this bash file to the container. So the content of the bash file for this example would be something like