mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2025-01-22 15:48:03 +08:00
1e368720c0
Don't test whether we have net/if_pflog.h, test whether we're on OpenBSD; we no longer check for net/if_pflog.h in the configure script, and that's not a valid "is this OpenBSD?" check in any case, as other *BSDs have it as well.
16 lines
347 B
Perl
16 lines
347 B
Perl
# -*- perl -*-
|
|
|
|
$testlist = [
|
|
# This specific test fails on OpenBSD because the .pcap file uses DLT_RAW,
|
|
# which OpenBSD treats as DLT_LOOP.
|
|
{
|
|
config_unset => 'IS_OPENBSD',
|
|
name => 'heap-overflow-1',
|
|
input => 'heap-overflow-1.pcap',
|
|
output => 'heap-overflow-1.out',
|
|
args => '-v'
|
|
},
|
|
];
|
|
|
|
1;
|