mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 18:10:16 +00:00
fix(tests): make tests posix compatible
This commit is contained in:
parent
379ded5a8f
commit
1234c34d0b
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running error test script..."
|
||||
|
||||
echo "Expected error"
|
||||
exit 1
|
||||
exit 1
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running simple test script..."
|
||||
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/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
|
||||
|
||||
echo "This line should not be executed!"
|
||||
|
||||
exit 0
|
||||
exit 0
|
||||
|
|
Loading…
Reference in New Issue
Block a user