Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
test:
name: "Linux"
runs-on: "ubuntu-latest"
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -40,6 +41,7 @@ jobs:
run: |
cd wrapper
export BINARY_FOLDER=/usr/bin/java
export TTL=60
./run.sh


2 changes: 1 addition & 1 deletion tests/testlib.bash
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function resolveBg() {
ps | grep "$pid" # to die if process do nto start
# shellcheck disable=SC2166
if [ "x$TTL" = "x" -o "x$TTL" = "x0" ] ; then
wait "$pid"
timeout 60 wait "$pid"
else
sleep "$TTL"
import -window root "$REPORT_DIR"/$cname-02.png
Expand Down