diff options
Diffstat (limited to 'cpp/test/IceGrid/deployer/Client.cpp')
-rw-r--r-- | cpp/test/IceGrid/deployer/Client.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cpp/test/IceGrid/deployer/Client.cpp b/cpp/test/IceGrid/deployer/Client.cpp index ccd7533ff93..785c8e43120 100644 --- a/cpp/test/IceGrid/deployer/Client.cpp +++ b/cpp/test/IceGrid/deployer/Client.cpp @@ -17,6 +17,7 @@ int run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) { bool withTarget = false; + bool withTemplates = false; if(argc > 1) { int i = 1; @@ -27,14 +28,19 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) withTarget = true; break; } + else if(strcmp(argv[i], "-e") == 0) + { + withTemplates = true; + break; + } i++; } } if(!withTarget) { - void allTests(const Ice::CommunicatorPtr&); - allTests(communicator); + void allTests(const Ice::CommunicatorPtr&, bool); + allTests(communicator, withTemplates); } else { |