~ubuntu-branches/ubuntu/raring/modsecurity-apache/raring

« back to all changes in this revision

Viewing changes to tests/tfn/hexDecode.t

  • Committer: Package Import Robot
  • Author(s): Alberto Gonzalez Iniesta
  • Date: 2011-12-28 16:51:11 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20111228165111-8elucllauydvcnwx
Tags: 2.6.3-1
* New upstream release
* Include mlogc (still missing manpage). (Closes: #645875)
* postinst: changed force-reload to restart to avoid apache from segfaulting
  when upgrading modsecurity module (Closes: #574376)

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
        type => "tfn",
22
22
        name => "hexDecode",
23
23
        input => "546573740043617365",
24
 
        output => "Test00Case",
 
24
        output => "Test\0Case",
25
25
        ret => 1,
26
26
},
27
27
 
31
31
        type => "tfn",
32
32
        name => "hexDecode",
33
33
        input => "01234567890a0z01234567890a",
34
 
        output => "01#Eg890a0z01#Eg890a",
 
34
        output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a",
35
35
        ret => 1,
36
36
},
37
37
{
38
38
        type => "tfn",
39
39
        name => "hexDecode",
40
40
        input => "01234567890az",
41
 
        output => "01#Eg890az",
 
41
        output => "\x01#Eg\x89\x0a",
42
42
        ret => 1,
43
43
},
44
44
{
45
45
        type => "tfn",
46
46
        name => "hexDecode",
47
47
        input => "01234567890a0",
48
 
        output => "01#Eg890a0",
 
48
        output => "\x01#Eg\x89\x0a",
49
49
        ret => 1,
50
50
},