From 2b2d1cdb82d964282f46b96d6fee2f99086589f8 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Tue, 8 Mar 2022 10:46:07 +0500 Subject: test/integration: more obvious success indication --- test/integration/local/test.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/integration/local') diff --git a/test/integration/local/test.sh b/test/integration/local/test.sh index 088539b..3c73543 100755 --- a/test/integration/local/test.sh +++ b/test/integration/local/test.sh @@ -11,6 +11,13 @@ readonly etc_dir="$script_dir/etc" readonly cgitize_toml_path="$etc_dir/cgitize.toml" readonly output_dir="$script_dir/output" +success() { + echo + echo ---------------------------------------------------------------------- + echo "SUCCESS: ${FUNCNAME[1]}" + echo ---------------------------------------------------------------------- +} + cleanup() { echo echo ---------------------------------------------------------------------- @@ -173,6 +180,7 @@ test_bare() { cgitize verify_added_commits cleanup + success } test_workdir() { @@ -188,6 +196,7 @@ test_workdir() { cgitize verify_added_commits cleanup + success } test_failure() { @@ -217,6 +226,7 @@ test_failure() { return 1 fi cleanup + success } main() { -- cgit v1.2.3