boost_test_bitwise.output 905 B

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