X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fapi%2Ftest_private_attset.c;h=c9ec292e9eb22cacc341ce3194fcd103b7a2beb3;hb=250de4ed23a44f5eb3552db317eef0d0fbe3265c;hp=079b3e12e02dd75101007f76cb9f9180221ba6e8;hpb=965cbd297cf8de73cfe01d55983b8161ae7cf67e;p=idzebra-moved-to-github.git diff --git a/test/api/test_private_attset.c b/test/api/test_private_attset.c index 079b3e1..c9ec292 100644 --- a/test/api/test_private_attset.c +++ b/test/api/test_private_attset.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1995-2008 Index Data + Copyright (C) 2004-2013 Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include "testlib.h" const char *myrec[] ={ @@ -41,18 +44,18 @@ static void tst(int argc, char **argv) YAZ_CHECK(tl_query(zh, "@attr 1=extra_title my", 1)); // numeric attributes with Bib-1 should produce an error - YAZ_CHECK(tl_query_x(zh, + YAZ_CHECK(tl_query_x(zh, "@attr 1=4 my", 0, 121)); - YAZ_CHECK(tl_query_x(zh, + YAZ_CHECK(tl_query_x(zh, "@attr 1=7 my", 0, 121)); // private OID with incorrect use attribute - YAZ_CHECK(tl_query_x(zh, + YAZ_CHECK(tl_query_x(zh, "@attr 1.2.840.10003.3.1000.1000.1 1=4 my", 0, 114)); // private OID with OK use attribute - YAZ_CHECK(tl_query(zh, + YAZ_CHECK(tl_query(zh, "@attr 1.2.840.10003.3.1000.1000.1 1=7 my", 1)); - YAZ_CHECK(tl_query(zh, + YAZ_CHECK(tl_query(zh, "@attr 1.2.840.10003.3.1000.1000.1 1=8 my", 1)); YAZ_CHECK(tl_close_down(zh, zs)); @@ -63,6 +66,7 @@ TL_MAIN /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab