summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2008-10-15 21:48:41 +0000
committerStephen D. Huston <shuston@apache.org>2008-10-15 21:48:41 +0000
commit8a3396931392fba06057d0b12561dbc2365b83e8 (patch)
tree18cab5467e1f2e93458380bfc5cf4543b857b1be /qpid/cpp
parent4dcb9f24c884a3ee559b60b6d48f070c9d2287e9 (diff)
downloadqpid-python-8a3396931392fba06057d0b12561dbc2365b83e8.tar.gz
Allow QPID_AUTO_TEST_CASE_EXPECTED_FAILURES to work at Boost 1.35
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@705067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/src/tests/unit_test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/unit_test.h b/qpid/cpp/src/tests/unit_test.h
index b986c74afa..df3ebfb1fe 100644
--- a/qpid/cpp/src/tests/unit_test.h
+++ b/qpid/cpp/src/tests/unit_test.h
@@ -53,7 +53,7 @@
// Workaround for BOOST_AUTO_TEST_SUITE_EXPECTED_FAILURES
//
-#if (BOOST_VERSION < 103500)
+#if (BOOST_VERSION < 103600)
// Keep the test function for compilation but do not not register it.
// TODO aconway 2008-04-23: better workaround for expected failures.
@@ -76,7 +76,7 @@
#endif
#ifndef QPID_AUTO_TEST_CASE_EXPECTED_FAILURES
-# define QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(name,n) BOOST_AUTO_TEST_SUITE_EXPECTED_FAILURES(name,n)
+# define QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(name,n) BOOST_AUTO_TEST_CASE_EXPECTED_FAILURES(name,n)
#endif
#ifndef QPID_AUTO_TEST_SUITE_END