X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ft11.c;h=d0cc7c91957057947d99f198a3858385dc3a5aec;hb=0ee1415968148352b07c112d0a4eb1deb4aa2322;hp=79660e103097138721afaa3cae712a0943c9140f;hpb=34c9397e52ad1492e2226ac838bff8e4a783f216;p=idzebra-moved-to-github.git diff --git a/test/api/t11.c b/test/api/t11.c index 79660e1..d0cc7c9 100644 --- a/test/api/t11.c +++ b/test/api/t11.c @@ -1,4 +1,4 @@ -/* $Id: t11.c,v 1.6 2006-08-14 10:40:22 adam Exp $ +/* $Id: t11.c,v 1.7 2006-08-31 08:36:53 adam Exp $ Copyright (C) 1995-2006 Index Data ApS @@ -38,6 +38,25 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_init_data(zh, myrec)); + /* + int tl_scan(ZebraHandle zh, const char *query, + int pos, int num, + int exp_pos, int exp_num, int exp_partial, + const char **exp_entries) + */ + + if (1) + { + /* bad string use attrite, bug #647 */ + const char *ent[] = { "a", 0 }; + YAZ_CHECK(tl_scan(zh, "@attr 1=bad 0", 1, 1, 1, 1, 0, 0)); + } + if (1) + { + /* bad numeric use attributes, bug #647 */ + const char *ent[] = { "a", 0 }; + YAZ_CHECK(tl_scan(zh, "@attr 1=1234 0", 1, 1, 1, 1, 0, 0)); + } if (1) { /* scan before. nothing must be returned */ @@ -47,7 +66,8 @@ static void tst(int argc, char **argv) if (1) { /* scan after. nothing must be returned */ - YAZ_CHECK(tl_scan(zh, "@attr 1=4 m", 1, 1, 1, 0, 1, 0)); + const char *ent[] = { 0 }; + YAZ_CHECK(tl_scan(zh, "@attr 1=4 m", 1, 1, 1, 0, 1, ent)); } if (1) { @@ -121,7 +141,8 @@ static void tst(int argc, char **argv) } if (1) { - YAZ_CHECK(tl_scan(zh, "@attr 1=4 z", -22, 10, -22, 0, 1, 0)); + const char *ent[] = { 0 }; + YAZ_CHECK(tl_scan(zh, "@attr 1=4 z", -22, 10, -22, 0, 1, ent)); } YAZ_CHECK(tl_close_down(zh, zs)); }