fix: moved test scripts to functionnal testing

This commit is contained in:
Gu://em_ 2026-01-31 16:35:34 +01:00
parent 37e430a234
commit b6305c2453
4 changed files with 0 additions and 3 deletions

15
tests/functional/loops.sh Executable file
View file

@ -0,0 +1,15 @@
echo "starting tests"
while false;
do
echo "should NOT be printed"
done
a='yes'
while [ "$a" -eq "yes" ];
do
a="no"
echo "should be printed only once"
done;
echo "tests done"