From 17f8b918c81d086de3b1b2439e98ec1205b1995e Mon Sep 17 00:00:00 2001 From: matteo Date: Sat, 31 Jan 2026 17:29:21 +0100 Subject: [PATCH] feat(testing): more loops tests --- tests/functional/loops.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/functional/loops.sh b/tests/functional/loops.sh index b3d0b69..c4d9896 100755 --- a/tests/functional/loops.sh +++ b/tests/functional/loops.sh @@ -12,4 +12,9 @@ do echo "should be printed only once" done; +while true; +do + echo "yes" +done; + echo "tests done"