#include #include #include #include #include #if HAVE_VPRINTF #ifdef __STDC__ #include #else #include #endif #endif #include static unsigned int tests = 0; static unsigned int passed = 0; static unsigned int failed = 0; static unsigned int verbose = 1; void gsl_test (int status, const char *test_description,...) { tests++; if (status == 0) { passed++; if (verbose) printf ("PASS: "); } else { failed++; if (verbose) printf ("FAIL: "); } if (verbose) { #ifdef HAVE_VPRINTF va_list ap; #ifdef __STDC__ va_start (ap, test_description); #else va_start (ap); #endif vprintf (test_description, ap); va_end (ap); #endif printf("\n"); fflush (stdout); } } void gsl_test_rel (double result, double expected, double relative_error, const char *test_description,...) { int status ; if (expected != 0 ) { status = (fabs(result-expected)/fabs(expected) > relative_error) ; } else { status = (fabs(result) > relative_error) ; } tests++; if (status == 0) { passed++; if (verbose) printf ("PASS: "); } else { failed++; if (verbose) printf ("FAIL: "); } if (verbose) { #ifdef HAVE_VPRINTF va_list ap; #ifdef __STDC__ va_start (ap, test_description); #else va_start (ap); #endif vprintf (test_description, ap); va_end (ap); #endif if (status == 0) { if (strlen(test_description) < 45) { printf(" (%g observed vs %g expected)", result, expected) ; } else { printf(" (%g obs vs %g exp)", result, expected) ; } } else { printf(" (%.18g observed vs %.18g expected)", result, expected) ; } printf ("\n") ; fflush (stdout); } } void gsl_test_abs (double result, double expected, double absolute_error, const char *test_description,...) { int status ; status = fabs(result-expected) > absolute_error ; tests++; if (status == 0) { passed++; if (verbose) printf ("PASS: "); } else { failed++; if (verbose) printf ("FAIL: "); } if (verbose) { #ifdef HAVE_VPRINTF va_list ap; #ifdef __STDC__ va_start (ap, test_description); #else va_start (ap); #endif vprintf (test_description, ap); va_end (ap); #endif if (status == 0) { if (strlen(test_description) < 45) { printf(" (%g observed vs %g expected)", result, expected) ; } else { printf(" (%g obs vs %g exp)", result, expected) ; } } else { printf(" (%.18g observed vs %.18g expected)", result, expected) ; } printf ("\n") ; fflush (stdout); } } void gsl_test_int (int result, int expected, const char *test_description,...) { int status = (result != expected) ; tests++; if (status == 0) { passed++; if (verbose) printf ("PASS: "); } else { failed++; if (verbose) printf ("FAIL: "); } if (verbose) { #ifdef HAVE_VPRINTF va_list ap; #ifdef __STDC__ va_start (ap, test_description); #else va_start (ap); #endif vprintf (test_description, ap); va_end (ap); #endif if (status == 0) { printf(" (%d observed vs %d expected)", result, expected) ; } else { printf(" (%d observed vs %d expected)", result, expected) ; } printf ("\n"); fflush (stdout); } } void gsl_test_str (const char * result, const char * expected, const char *test_description,...) { int status = strcmp(result,expected) ; tests++; if (status == 0) { passed++; if (verbose) printf ("PASS: "); } else { failed++; if (verbose) printf ("FAIL: "); } if (verbose) { #ifdef HAVE_VPRINTF va_list ap; #ifdef __STDC__ va_start (ap, test_description); #else va_start (ap); #endif vprintf (test_description, ap); va_end (ap); #endif if (status) { printf(" (%s observed vs %s expected)", result, expected) ; } printf ("\n"); fflush (stdout); } } void gsl_test_verbose (int v) { verbose = v; } int gsl_test_summary () { if (verbose && 0) /* FIXME: turned it off, this annoys me */ printf ("%d tests, passed %d, failed %d.\n", tests, passed, failed); if (failed != 0) { if (verbose && 0) /* FIXME: turned it off, this annoys me */ { printf ("%d TEST%s FAILED.\n", failed, failed == 1 ? "" : "S"); } return EXIT_FAILURE; } if (tests != passed + failed) { if (verbose) printf ("TEST RESULTS DO NOT ADD UP %d != %d + %d\n", tests, passed, failed); return EXIT_FAILURE; } if (passed == tests) { if (verbose && 0) /* FIXME: turned it off, this annoys me */ printf ("All tests passed successfully\n"); return EXIT_SUCCESS; } return EXIT_FAILURE; }