4 A lot of the tests written in C use assert(), only printing 'ok' at the end
5 of the program if none of the assert()s fired.
7 This is wrong. They should do the test outside of an assert(), and print
8 'ok' or 'not ok' as appropriate, instead of bailing out part way through.
9 That way if a test starts failing we'll know exactly which one failed, and
10 the other tests can continue.
12 This probably means a simple libtest.so that they can link against to
13 provide an ok() function (the non-fatal assert), probably with some helper
14 functions to keep track of test numbers and so on.
18 Any of the tests written in C should link against the libraries under
19 /usr/obj rather than using the system libraries.
23 Not everything's been converted to the new style. In particular;
36 needs to be converted. And fsx/ and gaithrstress/ are (I think) standalone
37 programs rather than individual tests, so aren't amenable to this sort of