diff options
Diffstat (limited to '')
-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() { |