diff options
Diffstat (limited to 'cpp/test/IceGrid/deployer/run.py')
-rwxr-xr-x | cpp/test/IceGrid/deployer/run.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cpp/test/IceGrid/deployer/run.py b/cpp/test/IceGrid/deployer/run.py index 838849fd7fd..85ebe5efad1 100755 --- a/cpp/test/IceGrid/deployer/run.py +++ b/cpp/test/IceGrid/deployer/run.py @@ -90,6 +90,20 @@ IceGridAdmin.removeApplication("test"); print "ok" # +# Deploy the application with templates, run the client and remove the application. +# +print "deploying application with templates...", +IceGridAdmin.addApplication(os.path.join(testdir, "application_with_templates.xml"), \ + "ice.dir=" + toplevel + " " + "test.dir=" + testdir); +print "ok" + +startClient("-e") + +print "removing application...", +IceGridAdmin.removeApplication("test"); +print "ok" + +# # Shutdown IceGrid. # IceGridAdmin.shutdownIceGridNode() |