Redo build system to properly use autotools and avoid compilation with apxs util.

This commit is contained in:
b1v1r
2010-04-25 23:24:09 +00:00
parent 972e46825c
commit eb6b9274af
148 changed files with 49047 additions and 7149 deletions

26
tests/tfn/hexEncode.t Normal file
View File

@@ -0,0 +1,26 @@
### Empty
{
type => "tfn",
name => "hexEncode",
input => "",
output => "",
ret => 1,
},
### Basic
{
type => "tfn",
name => "hexEncode",
input => "TestCase",
output => "5465737443617365",
ret => 1,
},
### Basic w/NULL
{
type => "tfn",
name => "hexEncode",
input => "Test\0Case",
output => "546573740043617365",
ret => 1,
},