diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-21 17:36:42 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2019-02-21 17:36:42 +0000 |
commit | 69138546b381b0bc3d9c62c67b0a1fb5cb6e1563 (patch) | |
tree | 3526f5d920077f30ba6ab4879c77b9731fdac9cb /regress/lib | |
parent | 20dcce348625e4fce0a98e416974b1c70d80839c (diff) |
Replace the print "not ok" with an assert macro. This is consistent
to the other tests and causes a regress fail. Fix RCS Id.
from Moritz Buhl
Diffstat (limited to 'regress/lib')
-rw-r--r-- | regress/lib/libm/msun/conj_test.c | 71 | ||||
-rw-r--r-- | regress/lib/libm/msun/fenv_test.c | 2 | ||||
-rw-r--r-- | regress/lib/libm/msun/lrint_test.c | 2 | ||||
-rw-r--r-- | regress/lib/libm/msun/test-utils.h | 2 |
4 files changed, 32 insertions, 45 deletions
diff --git a/regress/lib/libm/msun/conj_test.c b/regress/lib/libm/msun/conj_test.c index 40395abfe52..709b21cfe49 100644 --- a/regress/lib/libm/msun/conj_test.c +++ b/regress/lib/libm/msun/conj_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conj_test.c,v 1.1 2019/02/21 16:14:03 bluhm Exp $ */ +/* $OpenBSD: conj_test.c,v 1.2 2019/02/21 17:36:41 bluhm Exp $ */ /*- * Copyright (c) 2008 David Schultz <das@FreeBSD.org> * All rights reserved. @@ -42,6 +42,23 @@ #pragma STDC CX_LIMITED_RANGE OFF +/* + * Test that a function returns the correct value and sets the + * exception flags correctly. The exceptmask specifies which + * exceptions we should check. We need to be lenient for several + * reasons, but mainly because on some architectures it's impossible + * to raise FE_OVERFLOW without raising FE_INEXACT. In some cases, + * whether cexp() raises an invalid exception is unspecified. + * + * These are macros instead of functions so that assert provides more + * meaningful error messages. + */ +#define test(func, z, result, exceptmask, excepts) do { \ + assert(feclearexcept(FE_ALL_EXCEPT) == 0); \ + assert(cfpequal((func)(z), (result))); \ + assert(((void)(func), fetestexcept(exceptmask) == (excepts))); \ +} while (0) + /* Make sure gcc doesn't use builtin versions of these or honor __pure2. */ static float complex (*libconjf)(float complex) = conjf; static double complex (*libconj)(double complex) = conj; @@ -93,47 +110,17 @@ main(void) assert(fpequal(libcimag(in), __imag__ in)); assert(fpequal(libcimagl(in), __imag__ in)); - feclearexcept(FE_ALL_EXCEPT); - if (!cfpequal(libconjf(in), expected)) { - printf("not ok %d\t# conjf(%#.2g + %#.2gI): " - "wrong value\n", - 3 * i + 1, creal(in), cimag(in)); - } else if (fetestexcept(FE_ALL_EXCEPT)) { - printf("not ok %d\t# conjf(%#.2g + %#.2gI): " - "threw an exception\n", - 3 * i + 1, creal(in), cimag(in)); - } else { - printf("ok %d\t\t# conjf(%#.2g + %#.2gI)\n", - 3 * i + 1, creal(in), cimag(in)); - } - - feclearexcept(FE_ALL_EXCEPT); - if (!cfpequal(libconj(in), expected)) { - printf("not ok %d\t# conj(%#.2g + %#.2gI): " - "wrong value\n", - 3 * i + 2, creal(in), cimag(in)); - } else if (fetestexcept(FE_ALL_EXCEPT)) { - printf("not ok %d\t# conj(%#.2g + %#.2gI): " - "threw an exception\n", - 3 * i + 2, creal(in), cimag(in)); - } else { - printf("ok %d\t\t# conj(%#.2g + %#.2gI)\n", - 3 * i + 2, creal(in), cimag(in)); - } - - feclearexcept(FE_ALL_EXCEPT); - if (!cfpequal(libconjl(in), expected)) { - printf("not ok %d\t# conjl(%#.2g + %#.2gI): " - "wrong value\n", - 3 * i + 3, creal(in), cimag(in)); - } else if (fetestexcept(FE_ALL_EXCEPT)) { - printf("not ok %d\t# conjl(%#.2g + %#.2gI): " - "threw an exception\n", - 3 * i + 3, creal(in), cimag(in)); - } else { - printf("ok %d\t\t# conjl(%#.2g + %#.2gI)\n", - 3 * i + 3, creal(in), cimag(in)); - } + test(libconjf, in, expected, FE_ALL_EXCEPT, 0); + printf("ok %d\t\t# conjf(%#.2g + %#.2gI)\n", + 3 * i + 1, creal(in), cimag(in)); + + test(libconj, in, expected, FE_ALL_EXCEPT, 0); + printf("ok %d\t\t# conj(%#.2g + %#.2gI)\n", + 3 * i + 2, creal(in), cimag(in)); + + test(libconjl, in, expected, FE_ALL_EXCEPT, 0); + printf("ok %d\t\t# conjl(%#.2g + %#.2gI)\n", + 3 * i + 3, creal(in), cimag(in)); } return (0); diff --git a/regress/lib/libm/msun/fenv_test.c b/regress/lib/libm/msun/fenv_test.c index adbafa356f8..97abe77e78c 100644 --- a/regress/lib/libm/msun/fenv_test.c +++ b/regress/lib/libm/msun/fenv_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fenv_test.c,v 1.1 2019/02/21 16:14:03 bluhm Exp $ */ +/* $OpenBSD: fenv_test.c,v 1.2 2019/02/21 17:36:41 bluhm Exp $ */ /*- * Copyright (c) 2004 David Schultz <das@FreeBSD.org> * All rights reserved. diff --git a/regress/lib/libm/msun/lrint_test.c b/regress/lib/libm/msun/lrint_test.c index b5ff09ac8ed..8676d2a8959 100644 --- a/regress/lib/libm/msun/lrint_test.c +++ b/regress/lib/libm/msun/lrint_test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lrint_test.c,v 1.1 2019/02/21 16:14:03 bluhm Exp $ */ +/* $OpenBSD: lrint_test.c,v 1.2 2019/02/21 17:36:41 bluhm Exp $ */ /*- * Copyright (c) 2005-2008 David Schultz <das@FreeBSD.org> * All rights reserved. diff --git a/regress/lib/libm/msun/test-utils.h b/regress/lib/libm/msun/test-utils.h index 3284b014632..08bf71535e3 100644 --- a/regress/lib/libm/msun/test-utils.h +++ b/regress/lib/libm/msun/test-utils.h @@ -1,4 +1,4 @@ -/* $OpenBSD: test-utils.h,v 1.1 2019/02/21 16:14:03 bluhm Exp $ +/* $OpenBSD: test-utils.h,v 1.2 2019/02/21 17:36:41 bluhm Exp $ */ /*- * Copyright (c) 2005-2013 David Schultz <das@FreeBSD.org> * All rights reserved. |