File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -164,22 +164,27 @@ test_suite* init_unit_test_suite(int, char* [])
164
164
test->add (BOOST_TEST_CASE (&wrap_throw_delayed<&test_write>::execute));
165
165
#endif
166
166
167
- // MSSTL and libc++ don't handle exceptions from seek correctly
167
+ // MSSTL and libc++ don't handle exceptions from seekg correctly
168
168
#if !defined(_CPPLIB_VER) && !defined(_LIBCPP_VERSION)
169
169
170
170
test->add (BOOST_TEST_CASE (&wrap_nothrow <&test_seekg>::execute));
171
171
test->add (BOOST_TEST_CASE (&wrap_throw <&test_seekg>::execute));
172
172
#ifndef __CYGWIN__
173
173
test->add (BOOST_TEST_CASE (&wrap_throw_delayed<&test_seekg>::execute));
174
174
#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
+
176
181
test->add(BOOST_TEST_CASE(&wrap_nothrow <&test_seekp>::execute));
177
182
test->add(BOOST_TEST_CASE(&wrap_throw <&test_seekp>::execute));
178
183
#ifndef __CYGWIN__
179
184
test->add(BOOST_TEST_CASE(&wrap_throw_delayed<&test_seekp>::execute));
180
185
#endif
181
186
182
- #endif // !defined(_CPPLIB_VER) && !defined(_LIBCPP_VERSION)
187
+ #endif
183
188
184
189
return test;
185
190
}
You can’t perform that action at this time.
0 commit comments