Merge pull request #2303 from jwillemsen/jwi-803
[ACE_TAO.git] / TAO / performance-tests / Pluggable / client.cpp
blob2ac9b96075240bd72fc54df8f6cc840e19476621
1 #include "PP_Test_Client.h"
2 #include "tao/Timeprobe.h"
4 // This function runs the client test.
6 int
7 ACE_TMAIN(int argc, ACE_TCHAR *argv[])
9 PP_Test_Client pp_test_client;
11 ACE_DEBUG ((LM_DEBUG,
12 "\n\tPluggable_Test: client\n\n"));
14 if (pp_test_client.init (argc, argv) == -1)
15 return 1;
17 int retval = pp_test_client.run ();
19 ACE_TIMEPROBE_PRINT;
21 return retval;