Prepare for srcdir != dstdir in tests.
authorAdam Dickmeiss <adam@indexdata.dk>
Mon, 14 Jun 2004 23:43:32 +0000 (23:43 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Mon, 14 Jun 2004 23:43:32 +0000 (23:43 +0000)
test/api/t1.c
test/api/t2.c
test/api/t3.c
test/api/t4.c
test/api/t5.c
test/api/zebra.cfg

index 26c8ac4..2b06fa9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t1.c,v 1.5 2004-06-14 21:43:44 adam Exp $
+/* $Id: t1.c,v 1.6 2004-06-14 23:43:32 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002
    Index Data Aps
 
@@ -20,9 +20,19 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
 */
 
+#include <stdlib.h>
 #include <yaz/log.h>
 #include <zebraapi.h>
 
+/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
+static ZebraService start_service()
+{
+    char cfg[256];
+    char *srcdir = getenv("srcdir");
+    sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
+    return zebra_start(cfg, 0, 0);
+}
+       
 int main(int argc, char **argv)
 {
     ZebraService zs;
@@ -30,7 +40,7 @@ int main(int argc, char **argv)
 
     yaz_log_init_file("t1.log");
     nmem_init();
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     
     zebra_close (zh);
index c911a31..beb66d6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t2.c,v 1.9 2004-06-14 21:43:44 adam Exp $
+/* $Id: t2.c,v 1.10 2004-06-14 23:43:32 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
    Index Data Aps
 
@@ -20,9 +20,19 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
 */
 
+#include <stdlib.h>
 #include <yaz/log.h>
 #include <zebraapi.h>
 
+/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
+static ZebraService start_service()
+{
+    char cfg[256];
+    char *srcdir = getenv("srcdir");
+    sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
+    return zebra_start(cfg, 0, 0);
+}
+
 int main(int argc, char **argv)
 {
     int exit_code = 0;
@@ -38,7 +48,7 @@ int main(int argc, char **argv)
 
     nmem_init ();
 
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     zebra_select_database(zh, "Default");
     zebra_init(zh);
index b5b2c8d..1239654 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t3.c,v 1.6 2004-06-14 21:43:44 adam Exp $
+/* $Id: t3.c,v 1.7 2004-06-14 23:43:32 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
    Index Data Aps
 
@@ -24,6 +24,15 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include <yaz/pquery.h>
 #include <zebraapi.h>
 
+/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
+static ZebraService start_service()
+{
+    char cfg[256];
+    char *srcdir = getenv("srcdir");
+    sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
+    return zebra_start(cfg, 0, 0);
+}
+       
 int main(int argc, char **argv)
 {
     int i;
@@ -38,7 +47,7 @@ int main(int argc, char **argv)
 
     nmem_init ();
     
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     zebra_select_database(zh, "Default");
     zebra_init(zh);
index 54a0053..4d3da92 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t4.c,v 1.6 2004-06-14 21:43:44 adam Exp $
+/* $Id: t4.c,v 1.7 2004-06-14 23:43:32 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
    Index Data Aps
 
@@ -24,6 +24,15 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include <yaz/pquery.h>
 #include <zebraapi.h>
 
+/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
+static ZebraService start_service()
+{
+    char cfg[256];
+    char *srcdir = getenv("srcdir");
+    sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
+    return zebra_start(cfg, 0, 0);
+}
+       
 int main(int argc, char **argv)
 {
     int i;
@@ -38,7 +47,7 @@ int main(int argc, char **argv)
 
     nmem_init ();
     
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     zebra_init(zh);
     zebra_select_database(zh, "Default");
@@ -50,7 +59,7 @@ int main(int argc, char **argv)
     zebra_close(zh);
     zebra_stop(zs);
 
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     zebra_select_database(zh, "Default");
 
index a19de00..5313f87 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: t5.c,v 1.1 2004-06-14 21:43:44 adam Exp $
+/* $Id: t5.c,v 1.2 2004-06-14 23:43:32 adam Exp $
    Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004
    Index Data Aps
 
@@ -24,6 +24,15 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include <yaz/pquery.h>
 #include <zebraapi.h>
 
+/* read zebra.cfg from env var srcdir if it exists; otherwise current dir */
+static ZebraService start_service()
+{
+    char cfg[256];
+    char *srcdir = getenv("srcdir");
+    sprintf(cfg, "%.200s%szebra.cfg", srcdir ? srcdir : "", srcdir ? "/" : "");
+    return zebra_start(cfg, 0, 0);
+}
+       
 static void expect(ZebraHandle zh, const char *pqf, int hits_expect,
                   int *exit_code)
 {
@@ -58,7 +67,7 @@ int main(int argc, char **argv)
 
     nmem_init ();
     
-    zs = zebra_start("zebra.cfg", 0, 0);
+    zs = start_service();
     zh = zebra_open (zs);
     zebra_select_database(zh, "Default");
     zebra_init(zh);
index d4aca09..070f077 100644 (file)
@@ -1,9 +1,9 @@
-# $Id: zebra.cfg,v 1.1 2004-06-14 21:43:44 adam Exp $
-profilepath: ../../tab
+# $Id: zebra.cfg,v 1.2 2004-06-14 23:43:32 adam Exp $
+profilepath: ../../tab:${srcdir}/../../tab
 
 attset: bib1.att
 
 recordType: grs.sgml
 
-isam: b
+isam: b