- disabling test for now (todo later)

- removing irrelevant tuple test
This commit is contained in:
Joel de Guzman
2015-01-05 17:43:35 +08:00
parent 7d641cbc8f
commit af1bc25783
3 changed files with 3 additions and 78 deletions

View File

@ -56,6 +56,8 @@ int main() {
BOOST_TEST(as_deque(make_deque(make_deque(1))) == make_deque(make_deque(1)));
}
/* Disabling test for now, see https://github.com/boostorg/fusion/pull/38 ($$$ FIXME $$$)
{
deque<> xs;
BOOST_TEST(
@ -63,6 +65,6 @@ int main() {
make_deque(make_vector(1, '2', 3.3f))
);
}
*/
return boost::report_errors();
}