Consider srcdir in tests (for make distcheck)
authorAdam Dickmeiss <adam@indexdata.dk>
Thu, 13 Dec 2007 19:50:26 +0000 (19:50 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Thu, 13 Dec 2007 19:50:26 +0000 (19:50 +0000)
util/tstpass.c
util/tstres.c

index 20e728a..9b5b54b 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tstpass.c,v 1.3 2007-05-16 12:31:17 adam Exp $
+/* $Id: tstpass.c,v 1.4 2007-12-13 19:50:26 adam Exp $
    Copyright (C) 1995-2007
    Index Data ApS
 
@@ -22,9 +22,22 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
 #include <passwddb.h>
 #include <yaz/test.h>
+#include <yaz/snprintf.h>
+#include <stdlib.h>
+
+/* use env srcdir as base directory - or current directory if unset */
+const char *get_srcdir(void)
+{
+    const char *srcdir = getenv("srcdir");
+    if (!srcdir || ! *srcdir)
+        srcdir=".";
+    return srcdir;
+
+}
 
 static void tst(void)
 {
+    char path[1024];
     Passwd_db db;
     
     db = passwd_db_open();
@@ -32,10 +45,12 @@ static void tst(void)
     if (!db)
         return;
 
-    YAZ_CHECK_EQ(passwd_db_file_plain(db, "no_such_file.txt"), -1);
-    YAZ_CHECK_EQ(passwd_db_file_crypt(db, "no_such_file.txt"), -1);
+    yaz_snprintf(path, sizeof(path), "%s/no_such_file.txt", get_srcdir());
+    YAZ_CHECK_EQ(passwd_db_file_plain(db, path), -1);
+    YAZ_CHECK_EQ(passwd_db_file_crypt(db, path), -1);
+    yaz_snprintf(path, sizeof(path), "%s/tstpass.txt", get_srcdir());
 #if HAVE_CRYPT_H
-    YAZ_CHECK_EQ(passwd_db_file_crypt(db, "tstpass.txt"), 0);
+    YAZ_CHECK_EQ(passwd_db_file_crypt(db, path), 0);
     YAZ_CHECK_EQ(passwd_db_auth(db, "other", "x1234"), -1);
     YAZ_CHECK_EQ(passwd_db_auth(db, "admin", "abcd"), -2);
     YAZ_CHECK_EQ(passwd_db_auth(db, "admin", "fruitbat"), 0);
index 0de5fee..15ff89a 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tstres.c,v 1.3 2007-08-31 21:12:51 mike Exp $
+/* $Id: tstres.c,v 1.4 2007-12-13 19:50:26 adam Exp $
    Copyright (C) 1995-2007
    Index Data ApS
 
@@ -21,8 +21,21 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
 
 #include <string.h>
+#include <stdlib.h>
 #include <idzebra/res.h>
 #include <yaz/test.h>
+#include <yaz/snprintf.h>
+
+/* use env srcdir as base directory - or current directory if unset */
+const char *get_srcdir(void)
+{
+    const char *srcdir = getenv("srcdir");
+    if (!srcdir || ! *srcdir)
+        srcdir=".";
+    return srcdir;
+
+}
+
 
 static void tst_res_open(void)
 {
@@ -49,7 +62,11 @@ static void tst_res_read_file(void)
     if (res)
     {
         const char *v;
-        int r = res_read_file(res, "tstres.cfg");
+        char path[1024];
+        int r;
+        
+        yaz_snprintf(path, sizeof(path), "%s/tstres.cfg", get_srcdir());
+        r = res_read_file(res, path);
         YAZ_CHECK_EQ(r, ZEBRA_OK);
 
         v = res_get_def(res, "register", "none");