Omit test with multiple processes and update on FreeBSD. Bug #733.
[idzebra-moved-to-github.git] / test / api / t16.c
index 8eb991e..3070302 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t16.c,v 1.4 2006-11-17 14:24:56 marc Exp $
+/* $Id: t16.c,v 1.6 2006-11-23 09:03:51 marc Exp $
    Copyright (C) 1995-2006
    Index Data ApS
 
@@ -63,8 +63,8 @@ static ZEBRA_RES fetch_first(ZebraHandle zh, const char *element_set,
 static ZEBRA_RES fetch_first_compare(ZebraHandle zh, const char *element_set,
                                      oid_value format, const char *cmp_rec)
 {
-    const char *rec_buf;
-    size_t rec_len;
+    const char *rec_buf = 0;
+    size_t rec_len = 0;
     ODR odr = odr_createmem(ODR_ENCODE);
     ZEBRA_RES res = fetch_first(zh, element_set, format, odr,
                                 &rec_buf, &rec_len);
@@ -117,6 +117,9 @@ static void tst(int argc, char **argv)
     YAZ_CHECK_EQ(fetch_first_compare(zh, "zebra::meta::sysno", VAL_TEXT_XML,
                                      zebra_xml_sysno), ZEBRA_OK);
     
+    YAZ_CHECK_EQ(fetch_first_compare(zh, "zebra::meta", VAL_TEXT_XML,
+                                     "definitely not this"), ZEBRA_FAIL);
+    
     YAZ_CHECK_EQ(fetch_first_compare(zh, "zebra::index::title:p", 
                                      VAL_TEXT_XML,
                                      zebra_xml_index_title_p), ZEBRA_OK);