summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-06-06 15:09:24 -0400
committerSimo Sorce <simo@redhat.com>2014-06-06 15:09:45 -0400
commit11e7cc116c1d9b0f7fcd1d3d24d402b3590b8375 (patch)
tree8649d952309cc1c9e4ce3204e9a3e80f03883ed6 /tests
parent13e86bdb866f80aa4a050c900b8708b00889f38c (diff)
downloadipsilon-11e7cc116c1d9b0f7fcd1d3d24d402b3590b8375.tar.gz
ipsilon-11e7cc116c1d9b0f7fcd1d3d24d402b3590b8375.tar.xz
ipsilon-11e7cc116c1d9b0f7fcd1d3d24d402b3590b8375.zip
Print more info about the steps being performed
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tests.py b/tests/tests.py
index 811d31d..6fa880d 100755
--- a/tests/tests.py
+++ b/tests/tests.py
@@ -213,6 +213,7 @@ if __name__ == '__main__':
basehttpdir = '%s/%s' % (basedir, sname)
setup_http(basehttpdir, saddr, sport)
+ print "Installing IDP server %s" % sname
sprofile = generate_profile('%s/profile.cfg' % basedir, sname)
p = subprocess.Popen(['./ipsilon/install/ipsilon-server-install',
'--config-profile=%s' % sprofile], env=env,
@@ -238,6 +239,7 @@ if __name__ == '__main__':
basehttpdir = '%s/%s' % (basedir, sname)
setup_http(basehttpdir, saddr, sport)
+ print "Installing SP server %s" % sname
sprofile = generate_profile('%s/profile.cfg' % basedir, sname)
p = subprocess.Popen(['./ipsilon/install/ipsilon-client-install',
'--config-profile=%s' % sprofile], env=env,
@@ -257,6 +259,7 @@ if __name__ == '__main__':
env=env, preexec_fn=os.setsid)
srvs.append(srv)
+ print "Testing installation"
if os.path.exists('tests/%s.py' % args['test']):
code = subprocess.call(['./tests/%s.py' % args['test'], basedir],
env=env)