blob: d099844ec2a241e5b20b40ea1781cd7ca5e9dc9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#include <Ice/Ice.h>
#include <TestHelper.h>
#include <Test.h>
using namespace std;
class Client : public Test::TestHelper
{
public:
void run(int, char**);
};
void
Client::run(int argc, char** argv)
{
Ice::PropertiesPtr properties = createTestProperties(argc, argv);
properties->setProperty("Ice.Warn.Connections", "0"); // test aborts
Ice::CommunicatorHolder ich = initialize(argc, argv, properties);
vector<int> ports;
for(int i = 1; i < argc; ++i)
{
if(argv[i][0] == '-')
{
ostringstream os;
os << "unknown option `" << argv[i] << "'";
throw invalid_argument(os.str());
}
ports.push_back(atoi(argv[i]));
}
if(ports.empty())
{
throw runtime_error("no ports specified");
}
void allTests(Test::TestHelper*, const vector<int>&);
allTests(this, ports);
}
DEFINE_TEST(Client)
|