> They do not; the same test fails. I'm not familiar with the cmake system > here; is there a file where the test output goes?
You can do $ ctest --output-on-failure which will print out the stdout and stderr of any failed test. Alternatively, the tests are just statically linked executables in your $BUILD_DIR/tests directory, which if you're using build.sh, ends up being $SVN_ROOT/build/c/tests. So you can execute those commands directly: $ build/c/tests/test_avro_values –doug
