diff options
author | Alan Conway <aconway@apache.org> | 2006-11-09 21:55:34 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-09 21:55:34 +0000 |
commit | c33f3d8550b9b4455ad6ca8a2327a7bd9d6f7db1 (patch) | |
tree | bb5d68281986eb1664c227d15f303664a65d5e03 /cpp/test/unit | |
parent | 76fb78a8495b6cd48c633e8b6219b29761133d82 (diff) | |
download | qpid-python-c33f3d8550b9b4455ad6ca8a2327a7bd9d6f7db1.tar.gz |
Added POSIX equivalents to APR classes used by clients, inlined trivial calls.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@473087 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/test/unit')
-rw-r--r-- | cpp/test/unit/qpid/apr/APRBaseTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/AccumulatedAckTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ChannelTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ConfigurationTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ExchangeTest.cpp | 10 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp | 6 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/MessageBuilderTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/QueueRegistryTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/QueueTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/TopicExchangeTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/TxAckTest.cpp | 6 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/TxBufferTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/TxPublishTest.cpp | 6 | ||||
-rw-r--r-- | cpp/test/unit/qpid/broker/ValueTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/BodyHandlerTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/FieldTableTest.cpp | 2 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/FramingTest.cpp | 4 | ||||
-rw-r--r-- | cpp/test/unit/qpid/framing/HeaderTest.cpp | 2 |
18 files changed, 33 insertions, 33 deletions
diff --git a/cpp/test/unit/qpid/apr/APRBaseTest.cpp b/cpp/test/unit/qpid/apr/APRBaseTest.cpp index a0f88f78db..76b61afc1d 100644 --- a/cpp/test/unit/qpid/apr/APRBaseTest.cpp +++ b/cpp/test/unit/qpid/apr/APRBaseTest.cpp @@ -15,7 +15,7 @@ * limitations under the License. * */ -#include "qpid/apr/APRBase.h" +#include <qpid/apr/APRBase.h> #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/AccumulatedAckTest.cpp b/cpp/test/unit/qpid/broker/AccumulatedAckTest.cpp index 6cbdaacc32..193117221c 100644 --- a/cpp/test/unit/qpid/broker/AccumulatedAckTest.cpp +++ b/cpp/test/unit/qpid/broker/AccumulatedAckTest.cpp @@ -15,7 +15,7 @@ * limitations under the License. * */ -#include "qpid/broker/AccumulatedAck.h" +#include <qpid/broker/AccumulatedAck.h> #include <qpid_test_plugin.h> #include <iostream> #include <list> diff --git a/cpp/test/unit/qpid/broker/ChannelTest.cpp b/cpp/test/unit/qpid/broker/ChannelTest.cpp index 796c949363..373325e0eb 100644 --- a/cpp/test/unit/qpid/broker/ChannelTest.cpp +++ b/cpp/test/unit/qpid/broker/ChannelTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "qpid/broker/Channel.h" -#include "qpid/broker/Message.h" +#include <qpid/broker/Channel.h> +#include <qpid/broker/Message.h> #include <qpid_test_plugin.h> #include <iostream> #include <memory> diff --git a/cpp/test/unit/qpid/broker/ConfigurationTest.cpp b/cpp/test/unit/qpid/broker/ConfigurationTest.cpp index 8fd252a9a9..5af1286057 100644 --- a/cpp/test/unit/qpid/broker/ConfigurationTest.cpp +++ b/cpp/test/unit/qpid/broker/ConfigurationTest.cpp @@ -15,7 +15,7 @@ * limitations under the License. * */ -#include "qpid/broker/Configuration.h" +#include <qpid/broker/Configuration.h> #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/ExchangeTest.cpp b/cpp/test/unit/qpid/broker/ExchangeTest.cpp index d20b7c171a..babceeace8 100644 --- a/cpp/test/unit/qpid/broker/ExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/ExchangeTest.cpp @@ -16,11 +16,11 @@ * */ -#include "qpid/broker/DeliverableMessage.h" -#include "qpid/broker/DirectExchange.h" -#include "qpid/broker/Exchange.h" -#include "qpid/broker/Queue.h" -#include "qpid/broker/TopicExchange.h" +#include <qpid/broker/DeliverableMessage.h> +#include <qpid/broker/DirectExchange.h> +#include <qpid/broker/Exchange.h> +#include <qpid/broker/Queue.h> +#include <qpid/broker/TopicExchange.h> #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp b/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp index a57c1d8800..47bb172264 100644 --- a/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/HeadersExchangeTest.cpp @@ -16,9 +16,9 @@ * */ -#include "qpid/broker/HeadersExchange.h" -#include "qpid/framing/FieldTable.h" -#include "qpid/framing/Value.h" +#include <qpid/broker/HeadersExchange.h> +#include <qpid/framing/FieldTable.h> +#include <qpid/framing/Value.h> #include <qpid_test_plugin.h> using namespace qpid::broker; diff --git a/cpp/test/unit/qpid/broker/MessageBuilderTest.cpp b/cpp/test/unit/qpid/broker/MessageBuilderTest.cpp index c04226647f..ed761d9702 100644 --- a/cpp/test/unit/qpid/broker/MessageBuilderTest.cpp +++ b/cpp/test/unit/qpid/broker/MessageBuilderTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "qpid/broker/Message.h" -#include "qpid/broker/MessageBuilder.h" +#include <qpid/broker/Message.h> +#include <qpid/broker/MessageBuilder.h> #include <qpid_test_plugin.h> #include <iostream> #include <memory> diff --git a/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp b/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp index 59034fb7c8..32111105f5 100644 --- a/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp +++ b/cpp/test/unit/qpid/broker/QueueRegistryTest.cpp @@ -1,4 +1,4 @@ -#include "qpid/broker/QueueRegistry.h" +#include <qpid/broker/QueueRegistry.h> #include <qpid_test_plugin.h> #include <string> diff --git a/cpp/test/unit/qpid/broker/QueueTest.cpp b/cpp/test/unit/qpid/broker/QueueTest.cpp index ee64854dbb..903e045b89 100644 --- a/cpp/test/unit/qpid/broker/QueueTest.cpp +++ b/cpp/test/unit/qpid/broker/QueueTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "qpid/broker/Queue.h" -#include "qpid/broker/QueueRegistry.h" +#include <qpid/broker/Queue.h> +#include <qpid/broker/QueueRegistry.h> #include <qpid_test_plugin.h> #include <iostream> diff --git a/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp b/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp index 6a15573e51..681539223b 100644 --- a/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp +++ b/cpp/test/unit/qpid/broker/TopicExchangeTest.cpp @@ -1,4 +1,4 @@ -#include "qpid/broker/TopicExchange.h" +#include <qpid/broker/TopicExchange.h> #include <qpid_test_plugin.h> using namespace qpid::broker; diff --git a/cpp/test/unit/qpid/broker/TxAckTest.cpp b/cpp/test/unit/qpid/broker/TxAckTest.cpp index b6f8fbc1a1..c94cb717f8 100644 --- a/cpp/test/unit/qpid/broker/TxAckTest.cpp +++ b/cpp/test/unit/qpid/broker/TxAckTest.cpp @@ -15,9 +15,9 @@ * limitations under the License. * */ -#include "qpid/broker/MessageStore.h" -#include "qpid/broker/QueueRegistry.h" -#include "qpid/broker/TxAck.h" +#include <qpid/broker/MessageStore.h> +#include <qpid/broker/QueueRegistry.h> +#include <qpid/broker/TxAck.h> #include <qpid_test_plugin.h> #include <iostream> #include <list> diff --git a/cpp/test/unit/qpid/broker/TxBufferTest.cpp b/cpp/test/unit/qpid/broker/TxBufferTest.cpp index e9c531fad1..f95644e34f 100644 --- a/cpp/test/unit/qpid/broker/TxBufferTest.cpp +++ b/cpp/test/unit/qpid/broker/TxBufferTest.cpp @@ -15,7 +15,7 @@ * limitations under the License. * */ -#include "qpid/broker/TxBuffer.h" +#include <qpid/broker/TxBuffer.h> #include <qpid_test_plugin.h> #include <iostream> #include <vector> diff --git a/cpp/test/unit/qpid/broker/TxPublishTest.cpp b/cpp/test/unit/qpid/broker/TxPublishTest.cpp index a3a72b9475..b1f0b5a289 100644 --- a/cpp/test/unit/qpid/broker/TxPublishTest.cpp +++ b/cpp/test/unit/qpid/broker/TxPublishTest.cpp @@ -15,9 +15,9 @@ * limitations under the License. * */ -#include "qpid/broker/MessageStore.h" -#include "qpid/broker/QueueRegistry.h" -#include "qpid/broker/TxPublish.h" +#include <qpid/broker/MessageStore.h> +#include <qpid/broker/QueueRegistry.h> +#include <qpid/broker/TxPublish.h> #include <qpid_test_plugin.h> #include <iostream> #include <list> diff --git a/cpp/test/unit/qpid/broker/ValueTest.cpp b/cpp/test/unit/qpid/broker/ValueTest.cpp index 8ea536f59f..ae30aebfdd 100644 --- a/cpp/test/unit/qpid/broker/ValueTest.cpp +++ b/cpp/test/unit/qpid/broker/ValueTest.cpp @@ -1,4 +1,4 @@ -#include "qpid/framing/Value.h" +#include <qpid/framing/Value.h> #include <qpid_test_plugin.h> using namespace qpid::framing; diff --git a/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp b/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp index d6edf37d51..c8e3012558 100644 --- a/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp +++ b/cpp/test/unit/qpid/framing/BodyHandlerTest.cpp @@ -16,8 +16,8 @@ * */ #include <iostream> -#include "qpid/framing/amqp_framing.h" -#include "qpid_test_plugin.h" +#include <qpid/framing/amqp_framing.h> +#include <qpid_test_plugin.h> using namespace qpid::framing; class BodyHandlerTest : public CppUnit::TestCase diff --git a/cpp/test/unit/qpid/framing/FieldTableTest.cpp b/cpp/test/unit/qpid/framing/FieldTableTest.cpp index b11addfd0e..ea28b570d1 100644 --- a/cpp/test/unit/qpid/framing/FieldTableTest.cpp +++ b/cpp/test/unit/qpid/framing/FieldTableTest.cpp @@ -16,7 +16,7 @@ * */ #include <iostream> -#include "qpid/framing/amqp_framing.h" +#include <qpid/framing/amqp_framing.h> #include <qpid_test_plugin.h> using namespace qpid::framing; diff --git a/cpp/test/unit/qpid/framing/FramingTest.cpp b/cpp/test/unit/qpid/framing/FramingTest.cpp index ad2d651fe0..cfa5b4814e 100644 --- a/cpp/test/unit/qpid/framing/FramingTest.cpp +++ b/cpp/test/unit/qpid/framing/FramingTest.cpp @@ -15,8 +15,8 @@ * limitations under the License. * */ -#include "qpid/framing/ConnectionRedirectBody.h" -#include "qpid/framing/amqp_framing.h" +#include <qpid/framing/ConnectionRedirectBody.h> +#include <qpid/framing/amqp_framing.h> #include <iostream> #include <qpid_test_plugin.h> #include <sstream> diff --git a/cpp/test/unit/qpid/framing/HeaderTest.cpp b/cpp/test/unit/qpid/framing/HeaderTest.cpp index 8b613127b1..04af80acc8 100644 --- a/cpp/test/unit/qpid/framing/HeaderTest.cpp +++ b/cpp/test/unit/qpid/framing/HeaderTest.cpp @@ -16,7 +16,7 @@ * */ #include <iostream> -#include "qpid/framing/amqp_framing.h" +#include <qpid/framing/amqp_framing.h> #include <qpid_test_plugin.h> using namespace qpid::framing; |