Skip to content

Commit 65fc893

Browse files
committed
Update stream_state_test.cpp
1 parent fa8d08c commit 65fc893

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

test/stream_state_test.cpp

+8-3
Original file line numberDiff line numberDiff line change
@@ -164,22 +164,27 @@ test_suite* init_unit_test_suite(int, char* [])
164164
test->add(BOOST_TEST_CASE(&wrap_throw_delayed<&test_write>::execute));
165165
#endif
166166

167-
// MSSTL and libc++ don't handle exceptions from seek correctly
167+
// MSSTL and libc++ don't handle exceptions from seekg correctly
168168
#if !defined(_CPPLIB_VER) && !defined(_LIBCPP_VERSION)
169169

170170
test->add(BOOST_TEST_CASE(&wrap_nothrow <&test_seekg>::execute));
171171
test->add(BOOST_TEST_CASE(&wrap_throw <&test_seekg>::execute));
172172
#ifndef __CYGWIN__
173173
test->add(BOOST_TEST_CASE(&wrap_throw_delayed<&test_seekg>::execute));
174174
#endif
175-
175+
176+
#endif // !defined(_CPPLIB_VER) && !defined(_LIBCPP_VERSION)
177+
178+
// Since C++11, seekp does not catch exceptions
179+
#if 0
180+
176181
test->add(BOOST_TEST_CASE(&wrap_nothrow <&test_seekp>::execute));
177182
test->add(BOOST_TEST_CASE(&wrap_throw <&test_seekp>::execute));
178183
#ifndef __CYGWIN__
179184
test->add(BOOST_TEST_CASE(&wrap_throw_delayed<&test_seekp>::execute));
180185
#endif
181186

182-
#endif // !defined(_CPPLIB_VER) && !defined(_LIBCPP_VERSION)
187+
#endif
183188

184189
return test;
185190
}

0 commit comments

Comments
 (0)