Skip to content

Commit d925cf6

Browse files
committed
test(sequential): add tests for sequential command execution
1 parent e824a4b commit d925cf6

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

test_sequential.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Test sequential execution
2+
# @LOCAL
3+
echo "Command 1: Starting"
4+
sleep 0.5
5+
echo "Command 1: Finished"
6+
7+
echo "Command 2: Starting"
8+
sleep 0.5
9+
echo "Command 2: Finished"
10+
11+
echo "Command 3: This is a very long output"
12+
for i in {1..30}; do
13+
echo "Line $i of output"
14+
done

0 commit comments

Comments
 (0)