| commit | 598ce6b3d06b8cc041013a6d3e86dcf8d9c432f2 | [log] [tgz] |
|---|---|---|
| author | Alan Conway <aconway@redhat.com> | Thu Nov 16 15:41:55 2017 -0500 |
| committer | Alan Conway <aconway@redhat.com> | Thu Nov 16 15:41:55 2017 -0500 |
| tree | 2cb99e6ecae54d29de6a71af00552ee67cd084d8 | |
| parent | ab748b4d4c03703556e850f821e872bb0f03a004 [diff] |
NO-JIRA: Better error reporting from run_ssl_tests
Two scripts were using the idiom
if `cmd ...`; then...
which should be
if cmd ...; then ...
The first version executes cmd and then tries to execute the output of cmd
as a commnd. If the output is empty this will pass, but if non-emtpy it causes
a confusing "command not found" error.
Also added some logging to show what tests are being executed, and allow
multiple failing tests to run and report failure on exiting the script.
Qpid C++ is a C++ implementation of the AMQP protocol described at http://amqp.org/.
For additional software or information on the Qpid project go to:
For documentation, go to:
In C++ distributions:
mkdir BLD # The recommended way to use cmake is in a separate
# build directory
cd BLD
cmake .. # Generates code and makefiles
make test # Runs tests
make install # Installs the client and daemon
The INSTALL.txt notes contain more detailed information on compiling and installing this software.
examples/README.txt describes the C++ client API examples.