From: Bruno Haible <bruno@clisp.org> Date: Tue, 9 Apr 2024 10:22:54 +0000 (+0200) Subject: totalorder tests: Fix signature test. X-Git-Tag: v1.0~140 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=0960bc29365b8dffbf4f8dc10d29c3fa1fb47b58;p=gnulib.git totalorder tests: Fix signature test. * tests/test-totalorder.c: Test the signature of totalorder, not totalorderf. --- diff --git a/ChangeLog b/ChangeLog index 82c9899294..0fef174006 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-04-09 Bruno Haible <bruno@clisp.org> + + totalorder tests: Fix signature test. + * tests/test-totalorder.c: Test the signature of totalorder, not + totalorderf. + 2024-04-08 Collin Funk <collin.funk1@gmail.com> gnulib-tool.py: Use single-quotes for strings, part 2. diff --git a/tests/test-totalorder.c b/tests/test-totalorder.c index fc473a251d..77926e4a5f 100644 --- a/tests/test-totalorder.c +++ b/tests/test-totalorder.c @@ -20,7 +20,7 @@ #include <math.h> #include "signature.h" -SIGNATURE_CHECK (totalorderf, int, (const float *, const float *)); +SIGNATURE_CHECK (totalorder, int, (const double *, const double *)); #define TOTALORDER totalorder #define TOTALORDER_TYPE memory_double