blob: f44610eb4f66717542ddca5d85c6d63f85418e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- 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;
|