fix: moved test scripts to functionnal testing
This commit is contained in:
parent
37e430a234
commit
b6305c2453
4 changed files with 0 additions and 3 deletions
15
tests/functional/loops.sh
Executable file
15
tests/functional/loops.sh
Executable 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue