Richard,
what CPU is being used in this testing? The output from /proc/cpuinfo would be useful.
If there are CPUs that support the PCLMULQDQ instruction on both client and OSS, and the checksums are at least 2x faster using crc32 than adler, it makes sense to choose the crc32 checksum by default.
IMHO, the test seems a bit broken in that it is expecting adler, when in fact crc32 has always been a supported algorithm. I guess the test was written this way because adler was hard-coded as the default (since it was always faster than crc32 in software) and has been around sufficiently long to be supported in all releases. However, the client is still at liberty to choose crc32 if it is faster...
I also noticed in test_77c that there is an error being printed:
but is lacking information for the user about why it is failing (the test itself is trying to set the checksum type to crc32 at this point). I submitted http://review.whamcloud.com/6205 to improve the error message, but that is not fixing the bug here.
Landed for 2.4.1 and 2.5.0