| 42 | BAIDU_REGISTER_ERRNO(EMYERROR, "my error"); |
| 43 | |
| 44 | TEST_F(ErrnoTest, system_errno) { |
| 45 | errno = EPIPE; |
| 46 | ASSERT_STREQ("Broken pipe", berror()); |
| 47 | ASSERT_STREQ("Interrupted system call", berror(EINTR)); |
| 48 | } |
| 49 | |
| 50 | TEST_F(ErrnoTest, customized_errno) { |
| 51 | ASSERT_STREQ("the thread is stopping", berror(ESTOP)); |