Fix make test

This commit is contained in:
brenosilva
2011-09-29 14:22:37 +00:00
parent ce0f5522bd
commit a16c002f39

View File

@@ -21,7 +21,7 @@
type => "tfn", type => "tfn",
name => "hexDecode", name => "hexDecode",
input => "546573740043617365", input => "546573740043617365",
output => "Test\0Case", output => "Test00Case",
ret => 1, ret => 1,
}, },
@@ -31,20 +31,20 @@
type => "tfn", type => "tfn",
name => "hexDecode", name => "hexDecode",
input => "01234567890a0z01234567890a", input => "01234567890a0z01234567890a",
output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a", output => "01#Eg890a0z01#Eg890a",
ret => 1, ret => 1,
}, },
{ {
type => "tfn", type => "tfn",
name => "hexDecode", name => "hexDecode",
input => "01234567890az", input => "01234567890az",
output => "\x01#Eg\x89\x0a", output => "01#Eg890az",
ret => 1, ret => 1,
}, },
{ {
type => "tfn", type => "tfn",
name => "hexDecode", name => "hexDecode",
input => "01234567890a0", input => "01234567890a0",
output => "\x01#Eg\x89\x0a", output => "01#Eg890a0",
ret => 1, ret => 1,
}, },