diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:03:17 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-08-20 11:03:17 -0400 |
commit | 70dec1c42e8e6b537f20c10f98a60ec5d0b67d8a (patch) | |
tree | 0b979fa5abcfb4f5d9a4e558936f99f2f17b30a9 | |
parent | 126bb05db87276d9289ee7772e3e0a06905c9dfe (diff) | |
download | stasis-ci-add-pandoc.tar.gz |
Dump output of indexed filesci-add-pandoc
-rw-r--r-- | tests/rt_generic.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/rt_generic.sh b/tests/rt_generic.sh index fced08e..6da953d 100644 --- a/tests/rt_generic.sh +++ b/tests/rt_generic.sh @@ -72,6 +72,7 @@ pushd "$ws" retcode=$? set +x + echo "#### Files ####" find output for cond in "${fail_on_indexer[@]}"; do @@ -80,6 +81,17 @@ pushd "$ws" exit 1 fi done + + echo "#### Contents ####" + files=$(find output -type f \( -name '*.html' \) | sort) + for x in $files; do + echo + echo "FILENAME: $x" + echo + cat "$x" + echo "[EOF]" + echo + done popd rm -rf "$ws" |