diff options
Diffstat (limited to 'cpp/test/IcePack/deployer/Client.cpp')
-rw-r--r-- | cpp/test/IcePack/deployer/Client.cpp | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/cpp/test/IcePack/deployer/Client.cpp b/cpp/test/IcePack/deployer/Client.cpp new file mode 100644 index 00000000000..9bb8f2d4217 --- /dev/null +++ b/cpp/test/IcePack/deployer/Client.cpp @@ -0,0 +1,80 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// Mutable Realms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#include <Ice/Ice.h> +#include <TestCommon.h> +#include <Test.h> + +using namespace std; + +int +run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator) +{ + bool withTarget = false; + if(argc > 1) + { + int i = 1; + while(i < argc) + { + if(strcmp(argv[i], "-t") == 0) + { + withTarget = true; + break; + } + i++; + } + } + + if(!withTarget) + { + void allTests(const Ice::CommunicatorPtr&); + allTests(communicator); + } + else + { + void allTestsWithTarget(const Ice::CommunicatorPtr&); + allTestsWithTarget(communicator); + } + + return EXIT_SUCCESS; +} + +int +main(int argc, char* argv[]) +{ + int status; + Ice::CommunicatorPtr communicator; + + try + { + communicator = Ice::initialize(argc, argv); + status = run(argc, argv, communicator); + } + catch(const Ice::Exception& ex) + { + cerr << ex << endl; + status = EXIT_FAILURE; + } + + if(communicator) + { + try + { + communicator->destroy(); + } + catch(const Ice::Exception& ex) + { + cerr << ex << endl; + status = EXIT_FAILURE; + } + } + + return status; +} |