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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2009-10-31 11:52:10 UTC
  • mfrom: (1.1.8 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091031115210-x0mlijnegkce86fk
Tags: 1:1.6.7-1
* 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 atan() function.
2
 
   $Id: atan-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;             /* atan(x)      */
19
 
} t[] = {
20
 
 
21
 
    /* Zero     */
22
 
    { { .fl= +0.0 },    { .fl= +0.0 }   },
23
 
    { { .fl= -0.0 },    { .fl= -0.0 }   },
24
 
 
25
 
    /* Subnormal        */
26
 
    { { 0x00000001 },   { 0x00000001 }  },
27
 
    { { 0x00000100 },   { 0x00000100 }  },
28
 
    { { 0x00010000 },   { 0x00010000 }  },
29
 
    { { 0x007fffff },   { 0x007fffff }  },
30
 
    { { 0x80000001 },   { 0x80000001 }  },
31
 
    { { 0x80000100 },   { 0x80000100 }  },
32
 
    { { 0x80010000 },   { 0x80010000 }  },
33
 
    { { 0x807fffff },   { 0x807fffff }  },
34
 
    
35
 
    /* Inf      */
36
 
    { { 0x7f800000 },   { 0x3fc90fdb } },       /* +Pi/2        */
37
 
    { { 0xff800000 },   { 0xbfc90fdb } },       /* -Pi/2        */
38
 
    
39
 
    /* Some values      */
40
 
    { { .fl=  0x0.ffffffp0 },   { 0x3f490fda } },       /* Pi/4 */
41
 
    { { .fl=  1.0 },            { 0x3f490fdb } },       /* Pi/4 */
42
 
    { { .fl=  0x1.000002p0 },   { 0x3f490fdc } },       /* Pi/4 */
43
 
 
44
 
    { { .fl= -0x0.ffffffp0 },   { 0xbf490fda } },       /* -Pi/4 */
45
 
    { { .fl= -1.0 },            { 0xbf490fdb } },       /* -Pi/4 */
46
 
    { { .fl= -0x1.000002p0 },   { 0xbf490fdc } },       /* -Pi/4 */
47
 
};
48
 
 
49
 
void x_exit (int index)
50
 
{
51
 
#ifndef __AVR__
52
 
    fprintf (stderr, "t[%d]:  %#lx\n", index - 1, v.lo);
53
 
#endif
54
 
    exit (index ? index : -1);
55
 
}
56
 
 
57
 
int main ()
58
 
{
59
 
    union lofl_u x, z;
60
 
    int i;
61
 
    
62
 
    for (i = 0; i < (int) (sizeof(t) / sizeof(t[0])); i++) {
63
 
        x.lo = pgm_read_dword (& t[i].x);
64
 
        z.lo = pgm_read_dword (& t[i].z);
65
 
        v.fl = atan (x.fl);
66
 
        /* Comparison is integer to verify the zero sign.       */
67
 
        if (v.lo != z.lo)
68
 
            x_exit (i+1);
69
 
    }
70
 
    return 0;
71
 
}