* tests/test-stdckdint-h-c++.cc (main): Invoke ckd_add, ckd_sub, and
ckd_mul.
+2025-05-19 Collin Funk <collin.funk1@gmail.com>
+
+ stdckdint-h C++ tests: Verify the ckd_* functions can be invoked.
+ * tests/test-stdckdint-h-c++.cc (main): Invoke ckd_add, ckd_sub, and
+ ckd_mul.
+
2025-05-18 Paul Eggert <eggert@cs.ucla.edu>
tests: simplify test_exit_status decl
int
main ()
{
+ /* We only check that the macros can be invoked here. The actual tests are
+ performed by the C program. */
+ int r;
+ int a = 1;
+ int b = 1;
+ return !!(ckd_add (&r, a, b) || ckd_sub (&r, a, b) || ckd_mul (&r, a, b));
}