mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-11-24 02:23:27 +08:00
0f19351efd
With this change tcpdump passes "make check" on OpenBSD 6.8 AMD64.
16 lines
392 B
Perl
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;
|