Skip to content

Commit

Permalink
test: test8/8b shouldn't wait for full completion
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Mitchell <nickm@us.ibm.com>
  • Loading branch information
starpit committed Oct 14, 2024
1 parent 39de795 commit 5e42b34
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 5 additions & 1 deletion tests/bin/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,11 @@ function waitForIt {
done
fi

waitForEveryoneToDie $run_name
# Some tests may be very slow if we wait for them to run to completion
if [[ -z "$NO_WAIT_FOR_COMPLETION" ]]
then waitForEveryoneToDie $run_name
fi

return 0
}

Expand Down
5 changes: 4 additions & 1 deletion tests/tests/test8/settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ app=https://github.com/IBM/lunchpail-openroad-max-utilization.git
branch=v0.3.0
deployname=lunchpail-openroad-max-utilization

# we kill the process before it is finishes
# don't inspect output for validity
NUM_DESIRED_OUTPUTS=0

# we kill the process before it is finished
NO_WAIT_FOR_COMPLETION=1

expected=("Running experiment")
5 changes: 4 additions & 1 deletion tests/tests/test8b/settings.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ app=https://github.com/IBM/lunchpail-openroad-max-utilization.git
branch=v0.3.0
deployname=lunchpail-openroad-max-utilization

# we kill the process before it is finishes
# don't inspect output for validity
NUM_DESIRED_OUTPUTS=0

# we kill the process before it is finished
NO_WAIT_FOR_COMPLETION=1

expected=("Running experiment")

0 comments on commit 5e42b34

Please sign in to comment.