Skip to content

Commit

Permalink
Avoid UNAUTH_CLOSE_DELAY when testing
Browse files Browse the repository at this point in the history
Seeing if this fixes test failures
  • Loading branch information
mkj committed Apr 26, 2022
1 parent c4a0304 commit 2e0a16c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ jobs:
if: ${{ matrix.nondefault }}
run: |
# Turn on anything that's off by default. Rough but seems sufficient
grep ' 0$' default_options.h | sed 's/0$/1/' > localoptions.h
# UNAUTH_CLOSE_DELAY causes testing problems with lingering sockets, skip it.
grep ' 0$' default_options.h | grep -v UNAUTH_CLOSE_DELAY | sed 's/0$/1/' > localoptions.h
# PAM clashes with password
echo "#define DROPBEAR_SVR_PASSWORD_AUTH 0" >> localoptions.h
Expand Down

0 comments on commit 2e0a16c

Please sign in to comment.