Change return type for a zebra_add_record + zebra_repository functions to
[idzebra-moved-to-github.git] / test / xslt / xslt3.c
index 10699a3..a1f0677 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xslt3.c,v 1.6 2006-03-31 15:58:10 adam Exp $
+/* $Id: xslt3.c,v 1.8 2006-05-10 08:13:42 adam Exp $
    Copyright (C) 1995-2005
    Index Data ApS
 
@@ -26,6 +26,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 static void tst(int argc, char **argv)
 {
     char path[256];
+    char profile_path[256];
     char record_buf[20000];
     const char *records_array[] = {
        record_buf, 0
@@ -42,6 +43,10 @@ static void tst(int argc, char **argv)
     
     zebra_init(zh);
 
+    sprintf(profile_path, "%s:%s/../../tab", 
+            tl_get_srcdir(), tl_get_srcdir());
+    zebra_set_resource(zh, "profilePath", profile_path);
+
     zebra_set_resource(zh, "recordType", "xslt.marcschema-one.xml");
 
     sprintf(path, "%.200s/marc-one.xml", tl_get_srcdir());
@@ -84,3 +89,11 @@ static void tst(int argc, char **argv)
 
 TL_MAIN
 
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+