X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-log10.c;h=148d610ca9fea42737f2f1a46ad6e699382c3def;hb=a363f4ed4a0e69187c97686ac44502c49c7f4b3d;hp=28d0d53911ff7a86b075c43669432e144dedebdf;hpb=1602f0afed21be664fcf5c42d59db07cc22c56d6;p=gnulib.git diff --git a/tests/test-log10.c b/tests/test-log10.c index 28d0d5391..148d610ca 100644 --- a/tests/test-log10.c +++ b/tests/test-log10.c @@ -1,5 +1,5 @@ /* Test of log10() function. - Copyright (C) 2010-2012 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,19 @@ #include "signature.h" SIGNATURE_CHECK (log10, double, (double)); +#include + +#include "minus-zero.h" #include "macros.h" -volatile double x; -double y; +#define DOUBLE double +#define HUGEVAL HUGE_VAL +#define L_(literal) literal +#define MANT_DIG DBL_MANT_DIG +#define MINUS_ZERO minus_zerod +#define LOG10 log10 +#define RANDOM randomd +#include "test-log10.h" int main () @@ -36,5 +45,7 @@ main () y = log10 (x); ASSERT (y >= -0.2218487497 && y <= -0.2218487496); + test_function (); + return 0; }