From 7cd6631cae891cb42aba3b33e17398e34eef717a Mon Sep 17 00:00:00 2001 From: Neil Groves Date: Fri, 21 Feb 2014 17:52:32 +0000 Subject: [PATCH] strided.cpp unit test has the deque test removed. --- test/adaptor_test/strided.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/adaptor_test/strided.cpp b/test/adaptor_test/strided.cpp index 290cd4b..ad9e9e4 100644 --- a/test/adaptor_test/strided.cpp +++ b/test/adaptor_test/strided.cpp @@ -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 #include @@ -21,7 +24,6 @@ #include #include -#include #include namespace boost @@ -160,7 +162,6 @@ namespace boost void strided_test() { strided_test_impl< std::vector >(); - strided_test_impl< std::deque >(); strided_test_impl< std::list >(); }