X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftstccl.c;h=1f9f43d18db3eb6a1968707c06dbac11ccb54ac6;hp=6b3ff05c1c3345aa0a93f90c82f0a8df0df6aacf;hb=379504a233e3e2cc85bca1e7b6d864f1395aec7c;hpb=de80462103c0fc554c8fa40827894f92fa9d8fe6 diff --git a/test/tstccl.c b/test/tstccl.c index 6b3ff05..1f9f43d 100644 --- a/test/tstccl.c +++ b/test/tstccl.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2009 Index Data * See the file LICENSE for details. - * - * $Id: tstccl.c,v 1.16 2007-04-25 20:52:19 adam Exp $ */ /* CCL test */ @@ -127,6 +125,8 @@ void tst1(int pass) r = ccl_xml_config(bibset, xmlDocGetRootElement(doc), &addinfo); YAZ_CHECK_EQ(r, 0); + + xmlFreeDoc(doc); } break; #else @@ -194,9 +194,9 @@ void tst1(int pass) YAZ_CHECK(tst_ccl_query(bibset, "x=234-1990", "@attr 2=3 234-1990 ")); YAZ_CHECK(tst_ccl_query(bibset, "x=234 - 1990", "@and @attr 2=4 234 @attr 2=2 1990 ")); YAZ_CHECK(tst_ccl_query(bibset, "ti=a,b", "@attr 4=1 @attr 1=4 a,b ")); - YAZ_CHECK(tst_ccl_query(bibset, "ti=a, b", "@attr 4=1 @attr 1=4 a,\\ b ")); + YAZ_CHECK(tst_ccl_query(bibset, "ti=a, b", "@attr 4=1 @attr 1=4 \"a, b\" ")); YAZ_CHECK(tst_ccl_query(bibset, "ti=a-b", "@attr 4=2 @attr 1=4 a-b ")); - YAZ_CHECK(tst_ccl_query(bibset, "ti=a - b", "@attr 4=1 @attr 1=4 a\\ -\\ b ")); + YAZ_CHECK(tst_ccl_query(bibset, "ti=a - b", "@attr 4=1 @attr 1=4 \"a - b\" ")); ccl_qual_rm(&bibset); } @@ -213,6 +213,7 @@ int main(int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab