Permalink
Browse files

Change sleep values in background.test.sh to make it less flaky.

I observed the opposite order in practice.
  • Loading branch information...
Andy Chu
Andy Chu committed Aug 15, 2018
1 parent b1f8811 commit 5000b3f0c99614b397897fc504b205be5a6fa9da
Showing with 2 additions and 2 deletions.
  1. +2 −2 spec/background.test.sh
View
@@ -90,12 +90,12 @@ echo "status=$?" # third job I think
#### wait -n
{ sleep 0.09; exit 9; } &
{ sleep 0.07; exit 7; } &
{ sleep 0.03; exit 3; } &
wait -n
echo "status=$?"
wait -n
echo "status=$?"
## stdout-json: "status=7\nstatus=9\n"
## stdout-json: "status=3\nstatus=9\n"
## N-I dash stdout-json: "status=2\nstatus=2\n"
## N-I mksh stdout-json: "status=1\nstatus=1\n"

0 comments on commit 5000b3f

Please sign in to comment.