Skip to content

Commit

Permalink
Merge pull request #64 from garlick/issue#63
Browse files Browse the repository at this point in the history
testsuite: fix parallel make failure
  • Loading branch information
garlick committed May 4, 2023
2 parents 143cbb0 + 6fdd265 commit b4b946e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
cc: [gcc, clang]
os: [ubuntu-latest, ubuntu-18.04]
os: [ubuntu-latest, ubuntu-20.04]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions test/t49
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ TEST=t49

$PATH_POWERMAND -c ${TEST_BUILDDIR}/$TEST.conf -f -1 2>/dev/null&
sleep 1
./cli localhost:10103 q t1 >$TEST.out 2>$TEST.err
./cli localhost:10104 q t1 >$TEST.out 2>$TEST.err
test $? = 0 || exit 1
wait

$PATH_POWERMAND -c ${TEST_BUILDDIR}/$TEST.conf -f -1 2>/dev/null&
sleep 1
./cli localhost:10103 l >>$TEST.out 2>>$TEST.err
./cli localhost:10104 l >>$TEST.out 2>>$TEST.err
test $? = 0 || exit 1
wait

$PATH_POWERMAND -c ${TEST_BUILDDIR}/$TEST.conf -f -1 2>/dev/null&
sleep 1
./cli localhost:10103 1 t0 >>$TEST.out 2>>$TEST.err
./cli localhost:10104 1 t0 >>$TEST.out 2>>$TEST.err
test $? = 0 || exit 1
wait

Expand Down
2 changes: 1 addition & 1 deletion test/t49.conf.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
listen "0.0.0.0:10103"
listen "0.0.0.0:10104"

include "@top_srcdir@/etc/vpc.dev"
device "test0" "vpc" "@top_builddir@/test/vpcd |&"
Expand Down

0 comments on commit b4b946e

Please sign in to comment.