From d4b6979334ae7ed63afe6e8a81b069268496a63c Mon Sep 17 00:00:00 2001 From: lifubang Date: Tue, 6 Feb 2024 16:37:43 +0800 Subject: [PATCH] test: no execve error msg synced to parent process Signed-off-by: lifubang --- tests/integration/exec.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/exec.bats b/tests/integration/exec.bats index 78f922d04b4..2809070486e 100644 --- a/tests/integration/exec.bats +++ b/tests/integration/exec.bats @@ -338,5 +338,5 @@ EOF # Although we never close the sync socket when doing exec, # but we need to keep this test to ensure this behavior is always right. [ ${#lines[@]} -eq 1 ] - [[ ${lines[0]} = *"exec failed: unable to start container process: exec /run.sh: no such file or directory"* ]] + [[ ${lines[0]} = *"exec /run.sh: no such file or directory"* ]] }