mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-24 18:30:38 -05:00
While some of these tests are for DoT which doesn't require nghttp2, the server configs won't allow the server to start without nghttp2 support during compile time. It might be possible to split these tests into DoT and DoH and only require nghttp2 for DoH tests, but since almost all of our CI jobs are compiled with nghttp2, we wouldn't gain a lot of coverage, so it's probably not worth the effort.
20 lines
546 B
Bash
20 lines
546 B
Bash
#!/bin/sh
|
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
. ../conf.sh
|
|
|
|
$FEATURETEST --with-libnghttp2 || {
|
|
echo_i "This test requires libnghttp2 support." >&2
|
|
exit 255
|
|
}
|
|
exit 0
|