tcpdump/tests/non-bsd.tests
Guy Harris 1e368720c0 Run the test that fails on OpenBSD only if we're not on OpenBSD.
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.
2022-01-30 00:00:33 -08:00

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;