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

62
tests/tfn/removeNulls.t Normal file
View File

@@ -0,0 +1,62 @@
### Empty
{
type => "tfn",
name => "removeNulls",
input => "",
output => "",
ret => 0,
},
### Nothing
{
type => "tfn",
name => "removeNulls",
input => "TestCase",
output => "TestCase",
ret => 0,
},
{
type => "tfn",
name => "removeNulls",
input => "Test\x01Case",
output => "Test\x01Case",
ret => 0,
},
### Basics
{
type => "tfn",
name => "removeNulls",
input => "\0TestCase",
output => "TestCase",
ret => 1,
},
{
type => "tfn",
name => "removeNulls",
input => "Test\0Case",
output => "TestCase",
ret => 1,
},
{
type => "tfn",
name => "removeNulls",
input => "Test\0\0Case",
output => "TestCase",
ret => 1,
},
{
type => "tfn",
name => "removeNulls",
input => "TestCase\0",
output => "TestCase",
ret => 1,
},
{
type => "tfn",
name => "removeNulls",
input => "\0Test\0Case\0",
output => "TestCase",
ret => 1,
},