diff options
author | Alan Conway <aconway@apache.org> | 2009-06-17 13:45:31 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-06-17 13:45:31 +0000 |
commit | e04f58117006e8f0b7edcb0bcd00a33c6f6b5755 (patch) | |
tree | 78d95b5deffbc3b65435e472e15354e710bc6f91 /qpid/cpp/src/tests/ClientSessionTest.cpp | |
parent | 4f851534bb3aab0c6e36a27604d97065164241b2 (diff) | |
download | qpid-python-e04f58117006e8f0b7edcb0bcd00a33c6f6b5755.tar.gz |
Drop _EXPECTED_FAILURES macro, doesn't work with all boost versions.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@785601 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/ClientSessionTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/ClientSessionTest.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qpid/cpp/src/tests/ClientSessionTest.cpp b/qpid/cpp/src/tests/ClientSessionTest.cpp index 7a6373ac17..3ed7491f7d 100644 --- a/qpid/cpp/src/tests/ClientSessionTest.cpp +++ b/qpid/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(); |