Put local variables footer in all c, h files.
[idzebra-moved-to-github.git] / test / xslt / xslt4.c
index 37ba294..97b29a8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: xslt4.c,v 1.4 2006-03-31 15:58:10 adam Exp $
+/* $Id: xslt4.c,v 1.6 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];
 
     ZebraService zs = tl_start_up("zebrastaticrank.cfg", argc, argv);
     ZebraHandle  zh = zebra_open(zs, 0);
@@ -36,6 +37,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-col.xml");
     zebra_set_resource(zh, "staticrank", "1");
 
@@ -63,3 +68,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
+ */
+