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 47 48 49 50 51 52 53 54 55 56 57
|
// NOLINTBEGIN(*)
#include "old_common.h"
int main(int argc, char **argv)
{
DeviceProxy *device;
if(argc == 1)
{
TEST_LOG << "usage: %s device" << std::endl;
exit(-1);
}
std::string device_name = argv[1];
try
{
device = new DeviceProxy(device_name);
}
catch(CORBA::Exception &e)
{
Except::print_exception(e);
exit(1);
}
try
{
// Send a command in fire and forget mode
long id;
// char key;
// TEST_LOG << "Hit any key : ";
// cin >> key;
id = device->command_inout_asynch("State", true);
assert(id == 0);
}
catch(Tango::DevFailed &e)
{
Except::print_exception(e);
exit(-1);
}
catch(CORBA::Exception &ex)
{
Except::print_exception(ex);
exit(-1);
}
delete device;
return 0;
}
// NOLINTEND(*)
|