summaryrefslogtreecommitdiff
path: root/cpp/src/tests/ClientSessionTest.cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2009-06-17 13:45:31 +0000
committerAlan Conway <aconway@apache.org>2009-06-17 13:45:31 +0000
commitffd992ea799eeb6b68f36f203b708d11e3553aea (patch)
tree2c0b27f7f65d3edcb6a35227b66541ce9704eaf9 /cpp/src/tests/ClientSessionTest.cpp
parent80d65b38008d9b7f31c825508819f9600d63b63c (diff)
downloadqpid-python-ffd992ea799eeb6b68f36f203b708d11e3553aea.tar.gz
Drop _EXPECTED_FAILURES macro, doesn't work with all boost versions.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@785601 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r--cpp/src/tests/ClientSessionTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/tests/ClientSessionTest.cpp b/cpp/src/tests/ClientSessionTest.cpp
index 7a6373ac17..3ed7491f7d 100644
--- a/cpp/src/tests/ClientSessionTest.cpp
+++ b/cpp/src/tests/ClientSessionTest.cpp
@@ -147,8 +147,8 @@ QPID_AUTO_TEST_CASE(testDispatcherThread)
BOOST_CHECK_EQUAL(boost::lexical_cast<string>(i), listener.messages[i].getData());
}
-QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testSuspend0Timeout, 1)
-{
+// FIXME aconway 2009-06-17: test for unimplemented feature, enable when implemented.
+void testSuspend0Timeout() {
ClientSessionFixture fix;
fix.session.suspend(); // session has 0 timeout.
try {
@@ -168,8 +168,8 @@ QPID_AUTO_TEST_CASE(testUseSuspendedError)
} catch(const NotAttachedException&) {}
}
-QPID_AUTO_TEST_CASE_EXPECTED_FAILURES(testSuspendResume, 1)
-{
+// FIXME aconway 2009-06-17: test for unimplemented feature, enable when implemented.
+void testSuspendResume() {
ClientSessionFixture fix;
fix.session.timeout(60);
fix.session.suspend();