tcpdump/tests/non-bsd.tests
Denis Ovsienko 0f19351efd Don't try to run the DLT_RAW test on OpenBSD.
With this change tcpdump passes "make check" on OpenBSD 6.8 AMD64.
2021-03-17 11:55:17 +00:00

16 lines
392 B
Perl

# -*- perl -*-
$testlist = [
# This specific test fails on OpenBSD because the .pcap file uses DLT_RAW,
# which OpenBSD treats as DLT_LOOP. The macro is set on all three BSDs.
{
config_unset => 'HAVE_NET_IF_PFLOG_H',
name => 'heap-overflow-1',
input => 'heap-overflow-1.pcap',
output => 'heap-overflow-1.out',
args => '-v'
},
];
1;