Check a very simple format string

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15590 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-07-08 04:54:26 +00:00
parent 7cb5f5ba32
commit cd4b0519ab

View File

@@ -233,6 +233,12 @@ test_length (void)
return ch != 'a';
}
static int
test_simple (void)
{
return try("");
}
int
main (int argc, char **argv)
{
@@ -245,5 +251,7 @@ main (int argc, char **argv)
#endif
ret += test_null ();
ret += test_length ();
ret += test_simple();
return ret;
}