diff options
| author | Alan Conway <aconway@apache.org> | 2008-04-21 16:36:08 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-04-21 16:36:08 +0000 |
| commit | ff757c027f8b7142364360f0ee800c9743355903 (patch) | |
| tree | 6b493551b7c15c5b8db76dd1005007981ce6a096 /qpid/cpp/src/tests/Makefile.am | |
| parent | 224a70f13d371068e489625954b7034019a151bb (diff) | |
| download | qpid-python-ff757c027f8b7142364360f0ee800c9743355903.tar.gz | |
src/qpid/RangeSet.h: generic set implementation using ranges.
- no heap allocation for simple sets (<= 3 ranges)
- binary searches for o(log(n)) performance in complex sets
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@650198 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/Makefile.am')
| -rw-r--r-- | qpid/cpp/src/tests/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/Makefile.am b/qpid/cpp/src/tests/Makefile.am index b7fe79f56c..a6750a427a 100644 --- a/qpid/cpp/src/tests/Makefile.am +++ b/qpid/cpp/src/tests/Makefile.am @@ -36,6 +36,7 @@ unit_test_SOURCES= unit_test.cpp unit_test.h \ SessionState.cpp Blob.cpp logging.cpp \ Url.cpp Uuid.cpp \ Shlib.cpp FieldValue.cpp FieldTable.cpp Array.cpp \ + InlineAllocator.cpp \ InlineVector.cpp \ ISList.cpp IList.cpp \ ClientSessionTest.cpp \ @@ -45,7 +46,9 @@ unit_test_SOURCES= unit_test.cpp unit_test.h \ amqp_0_10/apply.cpp \ IncompleteMessageList.cpp \ amqp_0_10/Map.cpp \ - amqp_0_10/handlers.cpp + amqp_0_10/handlers.cpp \ + RangeSet.cpp + check_LTLIBRARIES += libshlibtest.la libshlibtest_la_LDFLAGS = -module -rpath $(abs_builddir) |
