fix(tests): make tests posix compatible

This commit is contained in:
Fabricio Silva 2024-12-24 13:37:48 +00:00
parent 379ded5a8f
commit 1234c34d0b
No known key found for this signature in database
GPG Key ID: 3B87DB678484A9B0
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

@ -1,8 +1,8 @@
#!/bin/bash
#!/bin/sh
echo "Running timeout test script..."
for i in {1..5}; do
for i in `seq 5`; do
sleep .5
echo "running..."
done