mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
Redo build system to properly use autotools and avoid compilation with apxs util.
This commit is contained in:
40
tests/tfn/lowercase.t
Normal file
40
tests/tfn/lowercase.t
Normal file
@@ -0,0 +1,40 @@
|
||||
### Empty
|
||||
{
|
||||
type => "tfn",
|
||||
name => "lowercase",
|
||||
input => "",
|
||||
output => "",
|
||||
ret => 0,
|
||||
},
|
||||
|
||||
### Nothing
|
||||
{
|
||||
type => "tfn",
|
||||
name => "lowercase",
|
||||
input => "testcase",
|
||||
output => "testcase",
|
||||
ret => 0,
|
||||
},
|
||||
{
|
||||
type => "tfn",
|
||||
name => "lowercase",
|
||||
input => "test\0case",
|
||||
output => "test\0case",
|
||||
ret => 0,
|
||||
},
|
||||
|
||||
### Basic
|
||||
{
|
||||
type => "tfn",
|
||||
name => "lowercase",
|
||||
input => "TestCase",
|
||||
output => "testcase",
|
||||
ret => 1,
|
||||
},
|
||||
{
|
||||
type => "tfn",
|
||||
name => "lowercase",
|
||||
input => "Test\0Case",
|
||||
output => "test\0case",
|
||||
ret => 1,
|
||||
},
|
Reference in New Issue
Block a user