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/docker/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/docker/test.sh')
-rwxr-xr-x | test/integration/docker/test.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/integration/docker/test.sh b/test/integration/docker/test.sh index 58ccaca..32680f7 100755 --- a/test/integration/docker/test.sh +++ b/test/integration/docker/test.sh @@ -22,6 +22,13 @@ dump() { done } +success() { + echo + echo ---------------------------------------------------------------------- + echo SUCCESS + echo ---------------------------------------------------------------------- +} + cleanup() { echo echo ---------------------------------------------------------------------- @@ -157,6 +164,7 @@ main() { setup run verify + success popd > /dev/null } |