From 21137f27084a872e27c180fb05aaca4af698c108 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Thu, 31 Oct 2019 06:49:48 -0700 Subject: [PATCH] Disable broken tests --- test/beast/core/stream_tests.hpp | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/test/beast/core/stream_tests.hpp b/test/beast/core/stream_tests.hpp index 256c29e3..67ad983e 100644 --- a/test/beast/core/stream_tests.hpp +++ b/test/beast/core/stream_tests.hpp @@ -67,9 +67,11 @@ test_async_read_stream() BOOST_ASSERT(is_async_read_stream::value); BEAST_EXPECT(&AsyncReadStream::get_executor); - BEAST_EXPECT((&AsyncReadStream::template async_read_some)); - BEAST_EXPECT((&AsyncReadStream::template async_read_some>)); - BEAST_EXPECT((&AsyncReadStream::template async_read_some)); + + // VFALCO These stopped working because of enable_if as the last parameter + //BEAST_EXPECT((&AsyncReadStream::template async_read_some)); + //BEAST_EXPECT((&AsyncReadStream::template async_read_some>)); + //BEAST_EXPECT((&AsyncReadStream::template async_read_some)); } template @@ -85,9 +87,10 @@ test_async_write_stream() BOOST_ASSERT(is_async_write_stream::value); BEAST_EXPECT(&AsyncWriteStream::get_executor); - BEAST_EXPECT((&AsyncWriteStream::template async_write_some)); - BEAST_EXPECT((&AsyncWriteStream::template async_write_some>)); - BEAST_EXPECT((&AsyncWriteStream::template async_write_some)); + // VFALCO These stopped working because of enable_if as the last parameter + //BEAST_EXPECT((&AsyncWriteStream::template async_write_some)); + //BEAST_EXPECT((&AsyncWriteStream::template async_write_some>)); + //BEAST_EXPECT((&AsyncWriteStream::template async_write_some)); } template