X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-cbrt.c;h=31bc01b39404c8550792d7f66bbc7dcfede9f32d;hb=23eecb48e39afd0d267d64d40ba6bf97aa865e13;hp=dae88ca7ee23d8071c83c34ff3e97f41d5058ef9;hpb=fa2036e3aa21bb1230ad3827006f234d193f89af;p=gnulib.git diff --git a/tests/test-cbrt.c b/tests/test-cbrt.c index dae88ca7e..31bc01b39 100644 --- a/tests/test-cbrt.c +++ b/tests/test-cbrt.c @@ -1,5 +1,5 @@ /* Test of cbrt() function. - Copyright (C) 2010 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; }