From 427dd31d2ffa8b868bd41ebce4a07d63296fb67f Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Sat, 8 Jun 2024 11:50:56 +1200 Subject: [PATCH] More quoted log tests --- tests/scripts/test_logging.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/scripts/test_logging.sh b/tests/scripts/test_logging.sh index 9910d86222d..d69fcc75289 100755 --- a/tests/scripts/test_logging.sh +++ b/tests/scripts/test_logging.sh @@ -26,6 +26,11 @@ test_log "\"test\"" "test" test_log "\"test;\"" "test;" test_log "\"test;;\"" "test;;" test_log "\"test\" abc" "\"test\" abc" +test_log "\"#comments\" #123" "#comments" +test_log "\"!bang\"" "!bang" +test_log "\"spaces are cool too\"" "spaces are cool too" +test_log "\"log a\"; log b" "log a" +test_log "\"log a\"; log b" "b" if [ -f quotes-*.err ] ; then exit 1