chore(tests): make tests posix compatible (#109)

This commit is contained in:
Fabricio Silva 2025-01-12 08:12:00 +00:00 committed by GitHub
parent 379ded5a8f
commit 6a2cf96e95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/sh
echo "Running error test script..." echo "Running error test script..."
echo "Expected error" echo "Expected error"
exit 1 exit 1

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
echo "Running simple test script..." echo "Running simple test script..."

View File

@ -1,12 +1,12 @@
#!/bin/bash #!/bin/sh
echo "Running timeout test script..." echo "Running timeout test script..."
for i in {1..5}; do for i in `seq 5`; do
sleep .5 sleep .5
echo "running..." echo "running..."
done done
echo "This line should not be executed!" echo "This line should not be executed!"
exit 0 exit 0