diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 10:46:07 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-08 10:46:07 +0500 |
commit | 2b2d1cdb82d964282f46b96d6fee2f99086589f8 (patch) | |
tree | 533090870126df0143235f3cf94b4078c739b16a /test/integration/local/test.sh | |
parent | cgitize.config: refactoring (diff) | |
download | cgitize-2b2d1cdb82d964282f46b96d6fee2f99086589f8.tar.gz cgitize-2b2d1cdb82d964282f46b96d6fee2f99086589f8.zip |
test/integration: more obvious success indication
Diffstat (limited to 'test/integration/local/test.sh')
-rwxr-xr-x | test/integration/local/test.sh | 10 |
1 files changed, 10 insertions, 0 deletions
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() { |