summaryrefslogtreecommitdiff
path: root/cpp/src/tests/unit_test.h
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
commit8cdf7df6f7690b0fc789ad2a9735299953384daf (patch)
treebe3b39f8ab2e37fefe18b4f9d11800cbd2585e52 /cpp/src/tests/unit_test.h
parentca2c15b9121db502807221936bc146a4b5520234 (diff)
downloadqpid-python-8cdf7df6f7690b0fc789ad2a9735299953384daf.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/qpid@705067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/unit_test.h')
-rw-r--r--cpp/src/tests/unit_test.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/tests/unit_test.h b/cpp/src/tests/unit_test.h
index b986c74afa..df3ebfb1fe 100644
--- a/cpp/src/tests/unit_test.h
+++ b/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