summaryrefslogtreecommitdiff
path: root/qpid/cpp/README
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2006-09-21 18:26:31 +0000
committerAlan Conway <aconway@apache.org>2006-09-21 18:26:31 +0000
commit35244d13859c33821977ae7e407439c7e00add45 (patch)
tree78d1853b5d27b4ad7bae94c373b77b377ea695d0 /qpid/cpp/README
parent8dec218339dbc69d84cf5f784dbfcdb653f588dc (diff)
downloadqpid-python-35244d13859c33821977ae7e407439c7e00add45.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@448624 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/README')
-rw-r--r--qpid/cpp/README11
1 files changed, 11 insertions, 0 deletions
diff --git a/qpid/cpp/README b/qpid/cpp/README
index 427a0c15c8..7d772dbf19 100644
--- a/qpid/cpp/README
+++ b/qpid/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