X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-cbrt.c;h=31bc01b39404c8550792d7f66bbc7dcfede9f32d;hb=69770559f5bf198928150ac8162734d7f6b99c82;hp=e63d8f0b789c6f6055e0ed84839c80f2b1f05e8f;hpb=4b6dad7e35019625bd5eb30796beebac099a7422;p=gnulib.git diff --git a/tests/test-cbrt.c b/tests/test-cbrt.c index e63d8f0b7..31bc01b39 100644 --- a/tests/test-cbrt.c +++ b/tests/test-cbrt.c @@ -1,5 +1,5 @@ /* Test of cbrt() function. - Copyright (C) 2010-2011 Free Software Foundation, Inc. + Copyright (C) 2010-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -23,10 +23,16 @@ #include "signature.h" SIGNATURE_CHECK (cbrt, double, (double)); +#include + #include "macros.h" -volatile double x; -double y; +#define DOUBLE double +#define L_(literal) literal +#define MANT_DIG DBL_MANT_DIG +#define CBRT cbrt +#define RANDOM randomd +#include "test-cbrt.h" int main () @@ -36,5 +42,7 @@ main () y = cbrt (x); ASSERT (y >= 0.8434326653 && y <= 0.8434326654); + test_function (); + return 0; }