~ubuntu-branches/ubuntu/raring/avr-libc/raring-proposed

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2008-08-10 09:59:16 UTC
  • mfrom: (1.2.1 upstream) (8 intrepid)
  • mto: (4.1.7 sid)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20080810095916-7ku06pjsfia3hz16
Added build-depends on texlive-extra-utils (closes: #493454)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Test of tanh() function.
 
2
   $Id: tanh-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. */
 
17
    union lofl_u x;             /* argument     */
 
18
    union lofl_u z;             /* tanh(x)      */
 
19
} t[] = {
 
20
 
 
21
    /* Zero     */
 
22
    { { .fl=  0.0 },    { .fl=  0.0 } },
 
23
    { { .fl= -0.0 },    { .fl= -0.0 } },
 
24
 
 
25
    /* Inf      */
 
26
    { { 0x7f800000 },   { .fl=  1 } },
 
27
    { { 0xff800000 },   { .fl= -1 } },
 
28
 
 
29
    /* Subnormal        */
 
30
    { { 0x00000001 },   { 0x00000001 } },
 
31
    { { 0x00000100 },   { 0x00000100 } },
 
32
    { { 0x00010000 },   { 0x00010000 } },
 
33
    { { 0x007fffff },   { 0x007fffff } },
 
34
    { { 0x80000001 },   { 0x80000001 } },
 
35
    { { 0x80000100 },   { 0x80000100 } },
 
36
    { { 0x80010000 },   { 0x80010000 } },
 
37
    { { 0x807fffff },   { 0x807fffff } },
 
38
    
 
39
    /* Arg too big      */
 
40
    { { .fl= 9.0109134 },       { .fl= 1 } },
 
41
    { { .fl= 10 },              { .fl= 1 } },
 
42
    { { .fl= 12345 },           { .fl= 1 } },
 
43
    { { 0x70000000 },           { .fl= 1 } },
 
44
    { { 0x7f7fffff },           { .fl= 1 } },
 
45
 
 
46
    /* Arg too negative */
 
47
    { { .fl= -9.0109134 },      { .fl= -1 } },
 
48
    { { .fl= -10 },             { .fl= -1 } },
 
49
    { { .fl= -12345 },          { .fl= -1 } },
 
50
    { { 0xf0000000 },           { .fl= -1 } },
 
51
    { { 0xff7fffff },           { .fl= -1 } },
 
52
 
 
53
    /* Near 0.0 */
 
54
    { { 0x00800000 },   { 0x00800000 } },
 
55
    { { 0x01000000 },   { 0x01000000 } },
 
56
 
 
57
    { { 0x80800000 },   { 0x80800000 } },
 
58
    { { 0x81000000 },   { 0x81000000 } },
 
59
};
 
60
 
 
61
void x_exit (int index)
 
62
{
 
63
#ifndef __AVR__
 
64
    fprintf (stderr, "t[%d]:  %#lx\n", index - 1, v.lo);
 
65
#endif
 
66
    exit (index ? index : -1);
 
67
}
 
68
 
 
69
int main ()
 
70
{
 
71
    union lofl_u x, z;
 
72
    int i;
 
73
    
 
74
    for (i = 0; i < (int) (sizeof(t) / sizeof(t[0])); i++) {
 
75
        x.lo = pgm_read_dword (& t[i].x);
 
76
        z.lo = pgm_read_dword (& t[i].z);
 
77
        v.fl = tanh (x.fl);
 
78
        /* Comparison is integer to verify the zero sign.       */
 
79
        if (v.lo != z.lo)
 
80
            x_exit (i+1);
 
81
    }
 
82
    return 0;
 
83
}