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

68
tests/tfn/trimRight.t Normal file
View File

@@ -0,0 +1,68 @@
### Empty
{
type => "tfn",
name => "trimRight",
input => "",
output => "",
ret => 0,
},
### Nothing
{
type => "tfn",
name => "trimRight",
input => "TestCase",
output => "TestCase",
ret => 0,
},
{
type => "tfn",
name => "trimRight",
input => "Test\0Case",
output => "Test\0Case",
ret => 0,
},
{
type => "tfn",
name => "trimRight",
input => " TestCase",
output => " TestCase",
ret => 0,
},
### Basics
{
type => "tfn",
name => "trimRight",
input => "TestCase ",
output => "TestCase",
ret => 1,
},
{
type => "tfn",
name => "trimRight",
input => " TestCase ",
output => " TestCase",
ret => 1,
},
{
type => "tfn",
name => "trimRight",
input => " Test Case ",
output => " Test Case",
ret => 1,
},
{
type => "tfn",
name => "trimRight",
input => " Test \0 Case ",
output => " Test \0 Case",
ret => 1,
},
{
type => "tfn",
name => "trimRight",
input => " Test \0 Case \r\n ",
output => " Test \0 Case",
ret => 1,
},