Blame tests/tfn/hexDecode.t

Packit 284210
### Empty
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "",
Packit 284210
	output => "",
Packit 284210
	ret => 1,
Packit 284210
},
Packit 284210
Packit 284210
### Basic
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "5465737443617365",
Packit 284210
	output => "TestCase",
Packit 284210
	ret => 1,
Packit 284210
},
Packit 284210
Packit 284210
### Basic w/NULL
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "546573740043617365",
Packit 284210
	output => "Test\0Case",
Packit 284210
	ret => 1,
Packit 284210
},
Packit 284210
Packit 284210
### Invalid
Packit 284210
# What should happen here?  Probably just fail and leave alone.
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "01234567890a0z01234567890a",
Packit 284210
	output => "\x01#Eg\x89\x0a#\x01#Eg\x89\x0a",
Packit 284210
	ret => 1,
Packit 284210
},
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "01234567890az",
Packit 284210
	output => "\x01#Eg\x89\x0a",
Packit 284210
	ret => 1,
Packit 284210
},
Packit 284210
{
Packit 284210
	type => "tfn",
Packit 284210
	name => "hexDecode",
Packit 284210
	input => "01234567890a0",
Packit 284210
	output => "\x01#Eg\x89\x0a",
Packit 284210
	ret => 1,
Packit 284210
},