mirror of
https://github.com/boostorg/system.git
synced 2025-10-05 12:10:58 +02:00
67 lines
1.6 KiB
C++
67 lines
1.6 KiB
C++
![]() |
// Copyright 2021, 2022 Peter Dimov.
|
||
|
// Distributed under the Boost Software License, Version 1.0.
|
||
|
// http://www.boost.org/LICENSE_1_0.txt
|
||
|
|
||
|
#include <boost/system/error_code.hpp>
|
||
|
#include <boost/system/error_category.hpp>
|
||
|
#include <boost/core/lightweight_test.hpp>
|
||
|
#include <boost/config.hpp>
|
||
|
#include <cerrno>
|
||
|
#include <system_error>
|
||
|
|
||
|
class my_category_impl: public std::error_category
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
char const* name() const BOOST_NOEXCEPT
|
||
|
{
|
||
|
return "mycat";
|
||
|
}
|
||
|
|
||
|
std::string message( int /*ev*/ ) const
|
||
|
{
|
||
|
return "Unknown error";
|
||
|
}
|
||
|
};
|
||
|
|
||
|
std::error_category const& my_category()
|
||
|
{
|
||
|
static my_category_impl mycat;
|
||
|
return mycat;
|
||
|
}
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
{
|
||
|
std::error_code e1( 5, boost::system::system_category() );
|
||
|
boost::system::error_code e2( e1 );
|
||
|
std::error_code e3( e2 );
|
||
|
|
||
|
BOOST_TEST_EQ( e1, e3 );
|
||
|
BOOST_TEST_EQ( e1.value(), e3.value() );
|
||
|
BOOST_TEST_EQ( &e1.category(), &e3.category() );
|
||
|
}
|
||
|
|
||
|
{
|
||
|
std::error_code e1( 5, boost::system::generic_category() );
|
||
|
boost::system::error_code e2( e1 );
|
||
|
std::error_code e3( e2 );
|
||
|
|
||
|
BOOST_TEST_EQ( e1, e3 );
|
||
|
BOOST_TEST_EQ( e1.value(), e3.value() );
|
||
|
BOOST_TEST_EQ( &e1.category(), &e3.category() );
|
||
|
}
|
||
|
|
||
|
{
|
||
|
std::error_code e1( 5, my_category() );
|
||
|
boost::system::error_code e2( e1 );
|
||
|
std::error_code e3( e2 );
|
||
|
|
||
|
BOOST_TEST_EQ( e1, e3 );
|
||
|
BOOST_TEST_EQ( e1.value(), e3.value() );
|
||
|
BOOST_TEST_EQ( &e1.category(), &e3.category() );
|
||
|
}
|
||
|
|
||
|
return boost::report_errors();
|
||
|
}
|