| 259 | /// @note(2) These errors include Unix signals and Windows structured |
| 260 | /// exceptions. They are often initiated by hardware traps. |
| 261 | enum error_code { |
| 262 | no_error = 0, ///< for completeness only; never returned |
| 263 | user_error = 200, ///< user reported non-fatal error |
| 264 | cpp_exception_error = 205, ///< see note (1) above |
| 265 | system_error = 210, ///< see note (2) above |
| 266 | timeout_error = 215, ///< only detectable on certain platforms |
| 267 | user_fatal_error = 220, ///< user reported fatal error |
| 268 | system_fatal_error = 225 ///< see note (2) above |
| 269 | }; |
| 270 | |
| 271 | /// Simple model for the location of failure in a source code |
| 272 | struct BOOST_TEST_DECL location { |
no outgoing calls
no test coverage detected