2
0
mirror of https://github.com/boostorg/test.git synced 2026-02-15 13:32:09 +00:00
Files
test/doc/examples/boost_test_bitwise.output
Raffi Enficiaud a1f41372f5 renamed files
part on container comparison using natural operator
part on per-element comparison
2015-05-19 15:22:37 +02:00

22 lines
985 B
Plaintext

//[example_output
> ./boost_test_bitwise --log_level=all
Running 1 test case...
Entering test module "boost_test_bitwise"
boost_test_bitwise.cpp:13: Entering test case "test_bitwise"
boost_test_bitwise.cpp:17: error: in "test_bitwise": check a == (a & ~1) has failed [171 != 170]. Bitwise comparison failed
Mismatch at position 0
boost_test_bitwise.cpp:18: error: in "test_bitwise": check a == a + 1 has failed [171 != 172]. Bitwise comparison failed
Mismatch at position 0
Mismatch at position 1
Mismatch at position 2
boost_test_bitwise.cpp:19: info: check a != a + 1 has passed
boost_test_bitwise.cpp:21: error: in "test_bitwise": check a == b has failed [171 != 136]. Bitwise comparison failed
Mismatch at position 0
Mismatch at position 1
Mismatch at position 5
boost_test_bitwise.cpp:13: Leaving test case "test_bitwise"; testing time: 627mks
Leaving test module "boost_test_bitwise"; testing time: 772mks
*** 3 failures are detected in the test module "boost_test_bitwise"
//]