Skip to content

Commit

Permalink
Move back to 100k, actually test v6 connectivity before the test run
Browse files Browse the repository at this point in the history
  • Loading branch information
omoerbeek committed Jan 7, 2025
1 parent c296f9f commit c18cd13
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ jobs:
path: /opt/pdns-recursor
- run: inv install-clang-runtime
- run: inv install-rec-bulk-deps
- run: inv test-bulk-recursor 500000 ${{ matrix.threads }} ${{ matrix.mthreads }} ${{ matrix.shards }} ${{ matrix.IPv6 }}
- run: inv test-bulk-recursor 100000 ${{ matrix.threads }} ${{ matrix.mthreads }} ${{ matrix.shards }} ${{ matrix.IPv6 }}
- run: inv generate-coverage-info /opt/pdns-recursor/sbin/pdns_recursor $GITHUB_WORKSPACE
if: ${{ env.COVERAGE == 'yes' && matrix.sanitizers != 'tsan' }}
- name: Coveralls Parallel recursor bulk
Expand Down
8 changes: 6 additions & 2 deletions regression-tests/recursor-test
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,13 @@ shards=$5

if [ $IPv6 = 1 ]
then
QLA6=" ::"
ip address
ip route
dig -6 @k.root-servers.net . SOA # Do we actually have v6 connectivity?
QLA6=" ::"
else
QLA6=""
dig -4 @k.root-servers.net . SOA # Do we actually have v4 connectivity?
QLA6=""
fi

rm -f recursor.pid pdns_recursor.pid
Expand Down
1 change: 1 addition & 0 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@
]
rec_bulk_deps = [
'curl',
'dnsutils',
'libboost-all-dev',
'libcap2',
'libfstrm0',
Expand Down

0 comments on commit c18cd13

Please sign in to comment.