~ubuntu-branches/ubuntu/maverick/avr-libc/maverick

« back to all changes in this revision

Viewing changes to tests/simulate/math/log-01.c

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2009-10-31 11:52:10 UTC
  • mfrom: (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: james.westby@ubuntu.com-20091031115210-crjd42sn6ezrj52c
* New upstream relese (closes: #544030)
* Added lintian overrides (closes: #553265)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Test of log() function.
2
 
   $Id: log-01.c,v 1.1 2007/02/05 21:35:58 dmix Exp $
3
 
 */
4
 
#include <math.h>
5
 
#include <stdio.h>
6
 
#include <stdlib.h>
7
 
#include "progmem.h"
8
 
 
9
 
union lofl_u {
10
 
    long lo;
11
 
    float fl;
12
 
};
13
 
 
14
 
volatile union lofl_u v = { .lo = 1 };
15
 
 
16
 
PROGMEM const struct {          /* Table of test cases:  x, log(x)      */
17
 
    union lofl_u x, z;
18
 
} t[] = {
19
 
 
20
 
    /* log(0)   */
21
 
    { { 0x00000000 }, { 0xff800000 } },
22
 
    { { 0x80000000 }, { 0xff800000 } },         /* -0.0 is legal arg.   */
23
 
    
24
 
    /* log(+Inf)        */
25
 
    { { 0x7f800000 }, { 0x7f800000 } },
26
 
 
27
 
    { { .fl = 1 / 2.7182818 },  { .fl = -1 }    },
28
 
    { { .fl = 1 },              { .fl = 0 }     },
29
 
//    { { .fl = 2.7182819 },    { .fl = 1 }     },
30
 
};
31
 
 
32
 
void x_exit (int index)
33
 
{
34
 
#ifndef __AVR__
35
 
    fprintf (stderr, "t[%d]:  %#lx\n", index - 1, v.lo);
36
 
#endif
37
 
    exit (index ? index : -1);
38
 
}
39
 
 
40
 
int main ()
41
 
{
42
 
    union lofl_u x, z;
43
 
    int i;
44
 
    
45
 
    for (i = 0; i < (int) (sizeof(t) / sizeof(t[0])); i++) {
46
 
        x.lo = pgm_read_dword (& t[i].x);
47
 
        z.lo = pgm_read_dword (& t[i].z);
48
 
        v.fl = log (x.fl);
49
 
        /* Comparison is integer to verify the zero sign.       */
50
 
        if (v.lo != z.lo)
51
 
            x_exit (i+1);
52
 
    }
53
 
    return 0;
54
 
}