From bf1f80275584d9f5c122b2e33d761e0049a46886 Mon Sep 17 00:00:00 2001 From: pvincent Date: Wed, 29 Jul 2026 23:04:24 +0400 Subject: [PATCH] 2 failed tests --- test/poc.test.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/poc.test.bash b/test/poc.test.bash index 9fda4d9..da7ade9 100755 --- a/test/poc.test.bash +++ b/test/poc.test.bash @@ -52,13 +52,13 @@ fail_type unbound_variable UNBOUND_VARIABLE fail_type unbound_associative UNBOUND_VARIABLE fail_type false FALSE fail_type last_false COMMAND_ERROR +fail_type command_error COMMAND_ERROR fail_type subshell_term SUBSHELL_ERROR fail_type exit EXIT fail_type command_not_found COMMAND_NOT_FOUND fail_type source_not_found SOURCE_NOT_FOUND -# fail_type file_not_found FILE_NOT_FOUND -# fail_type subshell_error COMMAND_NOT_FOUND '(hint: prefer source than subshell)' -# fail_type command_error COMMAND_ERROR +fail_type file_not_found FILE_NOT_FOUND '(hint: prefer source than subshell)' +fail_type subshell_error COMMAND_NOT_FOUND '(hint: prefer source than subshell)' failed=${#failures[@]} success=$((test_count - failed))