about summary refs log tree commit diff
path: root/math/libm-test-support.h
diff options
context:
space:
mode:
authorJoe Simmons-Talbott <josimmon@redhat.com>2024-05-20 14:09:35 +0000
committerJoe Simmons-Talbott <josimmon@redhat.com>2024-05-20 14:09:54 +0000
commitae18044f95271ed422ed847bd8d8c6d8e84674ce (patch)
tree4de1e5bdfe5c117de9fc8fa66461590aaa9c5639 /math/libm-test-support.h
parent79c52daf4740b00bef43e4f5a4281b3480459b38 (diff)
downloadglibc-ae18044f95271ed422ed847bd8d8c6d8e84674ce.tar.gz
glibc-ae18044f95271ed422ed847bd8d8c6d8e84674ce.tar.xz
glibc-ae18044f95271ed422ed847bd8d8c6d8e84674ce.zip
math: Add more details to the test driver output.
Add start and end indicators that identify the test being run in the
verbose output.  Better identify the tests for max errors in the
summary output.  Count each exception checked for each test. Remove
double counting of tests for the check_<type> functions other than
check_float_internal. Rename print_max_error and
print_complex_max_error to check_max_error and check_complex_max_error
respectively since they have side effects.

Co-Authored-By: Carlos O'Donell <carlos@redhat.com>
Reviewed-By: Joseph Myers <josmyers@redhat.com>
Diffstat (limited to 'math/libm-test-support.h')
-rw-r--r--math/libm-test-support.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/libm-test-support.h b/math/libm-test-support.h
index 8baf7e1817..efb9523e9e 100644
--- a/math/libm-test-support.h
+++ b/math/libm-test-support.h
@@ -170,8 +170,8 @@ extern const char doc[];
 
 int enable_test (int);
 void init_max_error (const char *, int, int);
-void print_max_error (const char *);
-void print_complex_max_error (const char *);
+void check_max_error (const char *);
+void check_complex_max_error (const char *);
 void check_float (const char *, FLOAT, FLOAT, int);
 void check_complex (const char *, CFLOAT, CFLOAT, int);
 void check_int (const char *, int, int, int);