aboutsummaryrefslogtreecommitdiff
path: root/test/test-lib.sh
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2021-05-16 09:37:40 -0300
committerDavid Bremner <david@tethera.net>2021-05-23 08:03:02 -0300
commit119a41b9edd5722bcb7a0a41bac010f254a652fd (patch)
tree32601970e37fb7edc684a3dd6252e982044fc52a /test/test-lib.sh
parent748352693cb92ede86b30cde219e5d95e8656461 (diff)
test: ignore debugging messages
Previously building with "-DDEBUG" broke the test suite in several places.
Diffstat (limited to 'test/test-lib.sh')
-rw-r--r--test/test-lib.sh14
1 files changed, 10 insertions, 4 deletions
diff --git a/test/test-lib.sh b/test/test-lib.sh
index c379d140..b669cede 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -502,12 +502,16 @@ print(msg.as_string(False))
' "$@"
}
+notmuch_debug_sanitize () {
+ grep -v '^D.:'
+}
+
notmuch_exception_sanitize () {
perl -pe 's/(A Xapian exception occurred at .*[.]cc?):([0-9]*)/\1:XXX/'
}
notmuch_search_sanitize () {
- perl -pe 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/'
+ notmuch_debug_sanitize | perl -pe 's/("?thread"?: ?)("?)................("?)/\1\2XXX\3/'
}
notmuch_search_files_sanitize () {
@@ -523,6 +527,7 @@ notmuch_show_sanitize () {
sed -e "$NOTMUCH_SHOW_FILENAME_SQUELCH"
}
notmuch_show_sanitize_all () {
+ notmuch_debug_sanitize | \
sed \
-e 's| filename:.*| filename:XXXXX|' \
-e 's| id:[^ ]* | id:XXXXX |' | \
@@ -545,9 +550,10 @@ notmuch_emacs_error_sanitize () {
shift
for file in "$@"; do
echo "=== $file ==="
- cat "$file"
+ notmuch_debug_sanitize < "$file"
done | sed \
- -e 's/^\[.*\]$/[XXX]/' \
+ -e '/^$/d' \
+ -e '/^\[.*\]$/d' \
-e "s|^\(command: \)\{0,1\}/.*/$command|\1YYY/$command|"
}
@@ -893,7 +899,7 @@ test_C () {
echo "== stdout ==" > OUTPUT.stdout
echo "== stderr ==" > OUTPUT.stderr
./${exec_file} "$@" 1>>OUTPUT.stdout 2>>OUTPUT.stderr
- notmuch_dir_sanitize OUTPUT.stdout OUTPUT.stderr | notmuch_exception_sanitize > OUTPUT
+ notmuch_dir_sanitize OUTPUT.stdout OUTPUT.stderr | notmuch_exception_sanitize | notmuch_debug_sanitize > OUTPUT
}
make_shim () {