You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
275 B

25 years ago
  1. #include <cl_io.h>
  2. extern int test_nt_jacobi (int iterations);
  3. #define RUN(tester,iterations) \
  4. fprint(cl_stdout,"Testing "#tester"...\n"); \
  5. error |= tester (iterations);
  6. int test_nt (int iterations)
  7. {
  8. int error = 0;
  9. RUN(test_nt_jacobi,iterations);
  10. return error;
  11. }