diff options
author | Alan Conway <aconway@apache.org> | 2011-03-14 14:33:44 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2011-03-14 14:33:44 +0000 |
commit | 44315b319809b3d0b51a8843ad349913050d5e66 (patch) | |
tree | 825d2bad53fb8d76f48e447db2ad5684c1409003 /cpp/src/tests/qpid-send.cpp | |
parent | 41d5943c1c1f888baba4d8641d6b548dddf3cf3d (diff) | |
download | qpid-python-44315b319809b3d0b51a8843ad349913050d5e66.tar.gz |
NO-JIRA: Minor improvements to test scripts qpid-cluster-benchmark and qpid-cpp-benchmark
- qpid-cluster-benchmark: added command line options.
- qpid-cpp-benchmark: clean up error handling, fixed a race condition.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1081396 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/qpid-send.cpp')
-rw-r--r-- | cpp/src/tests/qpid-send.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/tests/qpid-send.cpp b/cpp/src/tests/qpid-send.cpp index 15fa284c48..ef5e98e2a0 100644 --- a/cpp/src/tests/qpid-send.cpp +++ b/cpp/src/tests/qpid-send.cpp @@ -368,7 +368,7 @@ int main(int argc, char ** argv) return 0; } } catch(const std::exception& error) { - std::cout << "Failed: " << error.what() << std::endl; + std::cerr << "qpid-send: " << error.what() << std::endl; connection.close(); return 1; } |