summaryrefslogtreecommitdiff
path: root/qpid/cpp/test/client/client_test.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-11-29 14:36:08 +0000
committerAlan Conway <aconway@apache.org>2006-11-29 14:36:08 +0000
commit3bb9f37e40cb72d88cf6885bc80f93da3c3231ed (patch)
tree6d1cc162a39c183ecfea71181a7dbb0449542bff /qpid/cpp/test/client/client_test.cpp
parent89589a150ca7a9c8166ca86af30bbe1159bc0405 (diff)
downloadqpid-python-3bb9f37e40cb72d88cf6885bc80f93da3c3231ed.tar.gz
Posix EventChannel implementation using epoll. Placeholder for kevents.
Dynamic thread pool EventChannelThreads to serve EventChannel. Misc cleanup/enhancements. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480582 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/test/client/client_test.cpp')
-rw-r--r--qpid/cpp/test/client/client_test.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/qpid/cpp/test/client/client_test.cpp b/qpid/cpp/test/client/client_test.cpp
index 18b162ec8a..0a3c300f4a 100644
--- a/qpid/cpp/test/client/client_test.cpp
+++ b/qpid/cpp/test/client/client_test.cpp
@@ -90,7 +90,9 @@ int main(int argc, char**)
con.close();
std::cout << "Closed connection." << std::endl;
}catch(qpid::QpidError error){
- std::cout << "Error [" << error.code << "] " << error.msg << " (" << error.file << ":" << error.line << ")" << std::endl;
+ std::cout << "Error [" << error.code << "] " << error.msg << " ("
+ << error.location.file << ":" << error.location.line
+ << ")" << std::endl;
return 1;
}
return 0;