summaryrefslogtreecommitdiffstats
path: root/tests/tests.sh
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-12-16 15:51:59 -0500
committerTavian Barnes <tavianator@tavianator.com>2022-12-16 17:26:47 -0500
commite82a7f51d4b4e90df868e5410a0445b009b54ff2 (patch)
treec9efe94083800e3ea75721fc2c529729f9f691d2 /tests/tests.sh
parente50c19f284dad6b4b7b79f91cc8576a97626be8a (diff)
downloadbfs-e82a7f51d4b4e90df868e5410a0445b009b54ff2.tar.xz
tests: Print the skip reason for --verbose=skipped
Diffstat (limited to 'tests/tests.sh')
-rwxr-xr-xtests/tests.sh13
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/tests.sh b/tests/tests.sh
index 7ccd9b5..4a95fca 100755
--- a/tests/tests.sh
+++ b/tests/tests.sh
@@ -191,7 +191,6 @@ for arg; do
VERBOSE_SKIPPED=yes
;;
--verbose=tests)
- VERBOSE_SKIPPED=yes
VERBOSE_TESTS=yes
;;
--verbose)
@@ -542,6 +541,15 @@ function bfs_diff() (
)
function skip() {
+ if [ "$VERBOSE_SKIPPED" ]; then
+ caller | {
+ read -r line file
+ printf "${BOL}${CYN}%s skipped!${RST} (%s)\n" "$TEST" "$(awk "NR == $line" "$file")"
+ }
+ elif [ "$VERBOSE_TESTS" ]; then
+ printf "${BOL}${CYN}%s skipped!${RST}\n" "$TEST"
+ fi
+
exit $EX_SKIP
}
@@ -673,9 +681,6 @@ for TEST in "${TEST_CASES[@]}"; do
((++passed))
elif ((status == EX_SKIP)); then
((++skipped))
- if [ "$VERBOSE_SKIPPED" ]; then
- printf "${BOL}${CYN}%s skipped!${RST}\n" "$TEST"
- fi
else
((++failed))
[ "$VERBOSE_ERRORS" ] || cat "$TMP/stderr" >&2