diff options
| author | Alan Conway <aconway@apache.org> | 2006-09-21 18:26:31 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2006-09-21 18:26:31 +0000 |
| commit | 474ed3cf1e125360d26dad4376e106e8b48541ac (patch) | |
| tree | 4f1043da7f03a5ec230539a62afac3fb0f0f0b73 /cpp/README | |
| parent | 82e07bb30905feb2c11bb6d9f3624f976ab070a5 (diff) | |
| download | qpid-python-474ed3cf1e125360d26dad4376e106e8b48541ac.tar.gz | |
Implemented topic pattern matching for the TopicExchange.
Corrected default bindings to use the exchange named "" rather than
"amqp.direct".
Added python and unit tests for all of the above.
Minor improvements to testlib.py, also some tests for testlib itself.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@448624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/README')
| -rw-r--r-- | cpp/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cpp/README b/cpp/README index 427a0c15c8..7d772dbf19 100644 --- a/cpp/README +++ b/cpp/README @@ -24,6 +24,17 @@ Unit tests are built as .so files containing CppUnit plugins. DllPlugInTester is provided as part of cppunit. You can use it to run any subset of the unit tests. See Makefile for examples. +NOTE: If foobar.so is a test plugin in the current directory then +surprisingly this will fail with "can't load plugin": + DllPluginTester foobar.so + +Instead you need to say: + DllPluginTester ./foobar.so + +Reason: DllPluginTester uses dlopen() which searches for shlibs +in the standard places unless the filename contains a "/". In +that case it just tries to open the filename. + === System tests === The Python test suite ../python/run_tests is the main set of broker |
