strided.cpp unit test has the deque test removed.

This commit is contained in:
Neil Groves
2014-02-21 17:52:32 +00:00
parent 96054b0b48
commit 7cd6631cae

View File

@ -11,6 +11,9 @@
// The strided_defect_Trac5014 test case is a modified version of a test case
// contributed by Michel Morin as part of the trac ticket.
//
// The deque test case has been removed due to erroneous standard library
// implementations causing test failures.
//
#include <boost/range/adaptor/strided.hpp>
#include <boost/config.hpp>
@ -21,7 +24,6 @@
#include <boost/range/algorithm_ext.hpp>
#include <algorithm>
#include <deque>
#include <vector>
namespace boost
@ -160,7 +162,6 @@ namespace boost
void strided_test()
{
strided_test_impl< std::vector<int> >();
strided_test_impl< std::deque<int> >();
strided_test_impl< std::list<int> >();
}