X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-log.c;h=5f90d68d96b8f978eeb96878c0fe6d4df68dce8e;hb=1276a2c5f24c0c932426aca9c899fa524d2443f2;hp=67774b39bbe46313055356b2cf0398a5f2aa8c13;hpb=1602f0afed21be664fcf5c42d59db07cc22c56d6;p=gnulib.git diff --git a/tests/test-log.c b/tests/test-log.c index 67774b39b..5f90d68d9 100644 --- a/tests/test-log.c +++ b/tests/test-log.c @@ -1,5 +1,5 @@ /* Test of log() function. - Copyright (C) 2010-2012 Free Software Foundation, Inc. + Copyright (C) 2010-2014 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 (log, 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 LOG log +#define RANDOM randomd +#include "test-log.h" int main () @@ -36,5 +45,7 @@ main () y = log (x); ASSERT (y >= -0.5108256238 && y <= -0.5108256237); + test_function (); + return 0; }