Add cross-realm support to "make testrealm"
authorGreg Hudson <ghudson@mit.edu>
Fri, 4 Nov 2011 17:15:37 +0000 (17:15 +0000)
committerGreg Hudson <ghudson@mit.edu>
Fri, 4 Nov 2011 17:15:37 +0000 (17:15 +0000)
Allow "make testrealm CROSSNUM=N" to make N fully-connected realms for
cross-realm testing convenience.

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

src/Makefile.in
src/util/testrealm.py

index 7ac83206e5119bebe0cbd1ae6a7eaa8f192f2a89..acd27baf087da338ff92db97b700bec393ca4587 100644 (file)
@@ -592,8 +592,11 @@ check-unix:: krb5-config
 check-prerecurse: fake-install
 
 # Create a test realm and spawn a shell in an environment pointing to it.
+# If CROSSNUM is set, create that many fully connected test realms and
+# point the shell at the first one.
 testrealm: fake-install
-       PYTHONPATH=$(BUILDTOP):$(top_srcdir)/util $(PYTHON) $(srcdir)/util/testrealm.py
+       PYTHONPATH=$(top_srcdir)/util $(PYTHON) $(srcdir)/util/testrealm.py \
+               $(CROSSNUM)
 
 # environment variable settings to propagate to Python-based tests
 
index 30b3256edd0ef8c1dde08006ea6f774c2b6dfe60..53f0622507f466e0c8ee5269788f3690bdda268b 100644 (file)
@@ -22,7 +22,9 @@
 
 # Invoked by the testrealm target in the top-level Makefile.  Creates
 # a test realm and spawns a shell pointing at it, for convenience of
-# manual testing.
+# manual testing.  If a numeric argument is present after options,
+# creates that many fully connected test realms and point the shell at
+# the first one.
 
 from k5test import *
 
@@ -53,7 +55,11 @@ def supplement_path(env):
     # Assume PATH exists in env for simplicity.
     env['PATH'] = path_prefix + env['PATH']
 
-realm = K5Realm()
+if args:
+    realms = cross_realms(int(args[0]))
+    realm = realms[0]
+else:
+    realm = K5Realm()
 env = realm.env_master.copy()
 supplement_path(env)