Fix string attribute unit tests
authorGreg Hudson <ghudson@mit.edu>
Wed, 21 Sep 2011 21:18:35 +0000 (21:18 +0000)
committerGreg Hudson <ghudson@mit.edu>
Wed, 21 Sep 2011 21:18:35 +0000 (21:18 +0000)
Wrap t_stringattr in a very minimal Python test script so that libkdb5
can find the DB2 module to allocate memory.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25223 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/kdb/Makefile.in
src/lib/kdb/t_stringattr.c
src/lib/kdb/t_stringattr.py [new file with mode: 0644]

index e8f44ae2ff4ac533c2af5931610d3ce28b77f43a..f647bb166ab9408354d5a883e3b600a8a5c40d48 100644 (file)
@@ -58,9 +58,9 @@ all-unix:: all-liblinks
 install-unix:: install-libs
 clean-unix:: clean-liblinks clean-libs clean-libobjs
        $(RM) adb_err.c adb_err.h t_stringattr.o t_stringattr
-check-unix:: t_stringattr
-       KRB5_CONFIG=$(top_srcdir)/config-files/krb5.conf; export KRB5_CONFIG; \
-       $(RUN_SETUP) $(VALGRIND) ./t_stringattr
+
+check-pytests:: t_stringattr
+       $(RUNPYTEST) $(srcdir)/t_stringattr.py $(PYTESTFLAGS)
 
 generate-files-mac: darwin.exports
 
index 8b943124cef3b4e67e06825e01079fe9d065ac00..a04486e87e9bd776d1c6113f6788898dccd5c73a 100644 (file)
@@ -46,12 +46,14 @@ main()
     char *val;
     int count;
 
-    assert(krb5_init_context(&context) == 0);
+    assert(krb5int_init_context_kdc(&context) == 0);
 
     /* Start with an empty entry. */
     ent = krb5_db_alloc(context, NULL, sizeof(*ent));
-    if (ent == NULL)
-        return ENOMEM;
+    if (ent == NULL) {
+        fprintf(stderr, "Can't allocate memory for entry.\n");
+        return 1;
+    }
     memset(ent, 0, sizeof(*ent));
 
     /* Check that the entry has no strings to start. */
diff --git a/src/lib/kdb/t_stringattr.py b/src/lib/kdb/t_stringattr.py
new file mode 100644 (file)
index 0000000..210134c
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/python
+from k5test import *
+
+realm = K5Realm(create_kdb=False)
+realm.run_as_master(['./t_stringattr'])
+success('String attribute unit tests.')