summaryrefslogtreecommitdiffstats
path: root/tests/printf_z.tests
blob: a08199d6860d48cb597e1ef75e52b58c836f4b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# -*- perl -*-

$testlist = [
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf-gmpls',
        input => 'ospf-gmpls.pcap',
        output => 'ospf-gmpls.out',
        args   => '-v'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf-nssa-bitnt',
        input => 'ospf-nssa-bitnt.pcap',
        output => 'ospf-nssa-bitnt.out',
        args   => '-v'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf3_ah-vv',
        input => 'OSPFv3_with_AH.pcap',
        output => 'ospf3_ah-vv.out',
        args   => '-vv'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf3_bc-vv',
        input => 'OSPFv3_broadcast_adjacency.pcap',
        output => 'ospf3_bc-vv.out',
        args   => '-vv'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf3_mp-vv',
        input => 'OSPFv3_multipoint_adjacencies.pcap',
        output => 'ospf3_mp-vv.out',
        args   => '-vv'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf3_nbma-vv',
        input => 'OSPFv3_NBMA_adjacencies.pcap',
        output => 'ospf3_nbma-vv.out',
        args   => '-vv'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'ospf2-seg-fault-1-v',
        input => 'ospf2-seg-fault-1.pcapng',
        output => 'ospf2-seg-fault-1-v.out',
        args   => '-v'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'm3ua-vv',
        input => 'isup.pcap',
        output => 'isupvv.out',
        args   => '-vv'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'rsvp_infloop-v',
        input => 'rsvp-infinite-loop.pcap',
        output => 'rsvp_infloop-v.out',
        args   => '-v'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'decnet',
        input => 'DECnet_Phone.pcap',
        output => 'decnet.out',
        args   => ''
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'eigrp-tlv-oobr',
        input => 'eigrp-tlv-oobr.pcap',
        output => 'eigrp-tlv-oobr.out',
        args   => '-vvv -e'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'isis-areaaddr-oobr-1',
        input => 'isis-areaaddr-oobr-1.pcap',
        output => 'isis-areaaddr-oobr-1.out',
        args   => '-vvv -e'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'isis-areaaddr-oobr-2',
        input => 'isis-areaaddr-oobr-2.pcap',
        output => 'isis-areaaddr-oobr-2.out',
        args   => '-vvv -e'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'pktap-heap-overflow',
        input => 'pktap-heap-overflow.pcap',
        output => 'pktap-heap-overflow.out',
        args   => '-v'
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'dns-zlip-1',
        input => 'dns-zlip-1.pcap',
        output => 'dns-zlip-1.out',
        args   => ''
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'dns-zlip-2',
        input => 'dns-zlip-2.pcap',
        output => 'dns-zlip-2.out',
        args   => ''
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'dns-zlip-3',
        input => 'dns-zlip-3.pcap',
        output => 'dns-zlip-3.out',
        args   => ''
    },
    {
        config_unset => 'HAVE_NO_PRINTF_Z',
        name => 'sflow_print-segv',
        input => 'sflow_print-segv.pcap',
        output => 'sflow_print-segv.out',
        args   => '-v'
    },
];

1;