Skip to content

Commit 617f6d4

Browse files
committed
loop/010: fix the test output with Bash 5.3
$ ./check loop/010 loop/010 (check stale loop partition) loop/010 (check stale loop partition) [passed]op_device}" runtime ... 93.996s After the fix: $ ./check loop/010 loop/010 (check stale loop partition) [passed] runtime 93.996s ... 93.797s Signed-off-by: Yi Zhang <[email protected]>
1 parent 36d2304 commit 617f6d4

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/loop/010

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,9 @@ test() {
7373
sleep "${TIMEOUT:-90}"
7474
{
7575
kill -9 $create_pid
76+
wait $create_pid
7677
kill -9 $detach_pid
77-
wait
78+
wait $detach_pid
7879
sleep 1
7980
} 2>/dev/null
8081

0 commit comments

Comments
 (0)