From: Simo Sorce Date: Fri, 6 Jun 2014 19:09:24 +0000 (-0400) Subject: Print more info about the steps being performed X-Git-Tag: v0.3.0~125 X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fipsilon.git;a=commitdiff_plain;h=11e7cc116c1d9b0f7fcd1d3d24d402b3590b8375 Print more info about the steps being performed Signed-off-by: Simo Sorce --- 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)