diff options
author | Toni <matzeton@googlemail.com> | 2022-03-02 19:48:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 19:48:46 +0100 |
commit | cb62dfd24945f5732166ecb4121354adc48cec80 (patch) | |
tree | 99b704199af51e2819c8b1c6db3e37a75593698a /tests/do.sh.in | |
parent | e23507d3e97ce37bb15be59de5195336595cdb17 (diff) |
Drop support for non-gcrypt builds. (#1469)
* As there is now a builtin, lightweight libgcrypt
there is no need to disable tls-clho decryption.
* It is still possible to use a host libgcrypt
with `--with-local-libgcrypt'.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests/do.sh.in')
-rwxr-xr-x | tests/do.sh.in | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in index 3e91510e1..9bcedaeed 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -13,7 +13,6 @@ if [ "$NDPI_TESTS_VALGRIND" = "1" ]; then VALGRIND="valgrind -q --leak-check=full" fi -GCRYPT_ENABLED=1 PCRE_ENABLED=@PCRE_ENABLED@ PCRE_PCAPS="WebattackRCE.pcap" GCRYPT_PCAPS="gquic.pcap quic-23.pcap quic-24.pcap quic-27.pcap quic-28.pcap quic-29.pcap quic-mvfst-22.pcap quic-mvfst-27.pcapng quic-mvfst-exp.pcap quic_q50.pcap quic_t50.pcap quic_t51.pcap quic_0RTT.pcap quic_interop_V.pcapng quic-33.pcapng doq.pcapng doq_adguard.pcapng dlt_ppp.pcap os_detected.pcapng quic_frags_ch_out_of_order_same_packet_craziness.pcapng quic_frags_ch_in_multiple_packets.pcapng quic-v2-00.pcapng" @@ -53,14 +52,6 @@ check_results() { [ $SKIP_PCAP = 1 ] && continue fi SKIP_PCAP=0 - if [ $GCRYPT_ENABLED -eq 0 ]; then - for g in $GCRYPT_PCAPS; do - if [ $f = $g ]; then - SKIP_PCAP=1 - break - fi - done - fi if [ $PCRE_ENABLED -eq 0 ]; then for p in $PCRE_PCAPS; do if [ $f = $p ]; then |