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

« back to all changes in this revision

Viewing changes to tests/simulate/fplib/div-02.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 division.  Subnormals.
2
 
   $Id: div-02.c,v 1.1 2007/02/05 21:35:58 dmix Exp $
3
 
 */
4
 
#include <stdio.h>
5
 
#include <stdlib.h>
6
 
#include "progmem.h"
7
 
 
8
 
union lofl_u {
9
 
    long lo;
10
 
    float fl;
11
 
};
12
 
 
13
 
volatile union lofl_u v = { .lo = 1 };
14
 
 
15
 
PROGMEM const struct {          /* Table of test cases:  x / y = z      */
16
 
    union lofl_u x, y, z;
17
 
} t[] = {
18
 
 
19
 
    { { 0x00000001 }, { 0x00000001 }, { .fl = 1 } },
20
 
    { { 0x00000002 }, { 0x00000001 }, { .fl = 2 } },
21
 
    { { 0x00000003 }, { 0x00000001 }, { .fl = 3 } },
22
 
    { { 0x00000004 }, { 0x00000001 }, { .fl = 4 } },
23
 
    { { 0x007fffff }, { 0x00000001 }, { .fl = 0x0.7fffffp+24 } },
24
 
    { { 0x00800000 }, { 0x00000001 }, { .fl = 0x0.800000p+24 } },
25
 
    { { 0x00800001 }, { 0x00000001 }, { .fl = 0x0.800001p+24 } },
26
 
    { { 0x00800002 }, { 0x00000001 }, { .fl = 0x0.800002p+24 } },
27
 
    { { 0x00ffffff }, { 0x00000001 }, { .fl = 0x0.ffffffp+24 } },
28
 
    { { 0x01000000 }, { 0x00000001 }, { .fl = 0x0.800000p+25 } },
29
 
    { { 0x34fffffe }, { 0x00000001 }, { 0x7f7ffffe } },
30
 
    { { 0x34ffffff }, { 0x00000001 }, { 0x7f7fffff } },
31
 
    { { 0x35000000 }, { 0x00000001 }, { 0x7f800000 } },
32
 
    { { 0x35000001 }, { 0x00000001 }, { 0x7f800000 } },
33
 
    { { 0x7f7fffff }, { 0x00000001 }, { 0x7f800000 } },
34
 
 
35
 
    { { 0x00000001 }, { 0x00000001 }, { .fl = 1 } },
36
 
    { { 0x00000001 }, { 0x00000002 }, { .fl = 0.5 } },
37
 
    { { 0x00000001 }, { 0x00000003 }, { .fl = 0.33333333 } },
38
 
    { { 0x00000001 }, { 0x00000004 }, { .fl = 0.25 } },
39
 
    { { 0x00000001 }, { 0x00100000 }, { .fl = 0x1p-20 } },
40
 
    { { 0x00000001 }, { 0x00800000 }, { .fl = 0x1p-23 } },
41
 
    { { 0x00000001 }, { .fl = 1.0  }, { .fl = 0x1p-149 } },
42
 
    { { 0x00000001 }, { .fl = 2.0  }, { .fl = 0 } },
43
 
};
44
 
 
45
 
void x_exit (int index)
46
 
{
47
 
#ifndef __AVR__
48
 
    fprintf (stderr, "t[%d]:  %#lx\n", index - 1, v.lo);
49
 
#endif
50
 
    exit (index ? index : -1);
51
 
}
52
 
 
53
 
int main ()
54
 
{
55
 
    union lofl_u x,y,z;
56
 
    int i;
57
 
    
58
 
    for (i = 0; i < (int) (sizeof(t) / sizeof(t[0])); i++) {
59
 
        x.lo = pgm_read_dword (& t[i].x);
60
 
        y.lo = pgm_read_dword (& t[i].y);
61
 
        z.lo = pgm_read_dword (& t[i].z);
62
 
        v.fl = x.fl / y.fl;
63
 
        /* Comparison is integer to verify the zero sign.       */
64
 
        if (v.lo != z.lo)
65
 
            x_exit (i+1);
66
 
    }
67
 
    return 0;
68
 
}