2017-07-16 17:00:01 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
|
|
|
* Mes --- Maxwell Equations of Software
|
|
|
|
* Copyright © 2017 Jan Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
*
|
|
|
|
* This file is part of Mes.
|
|
|
|
*
|
|
|
|
* Mes is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* Mes is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "30-test.i"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
typedef struct foo
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
} foo;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int i;
|
2017-07-18 18:22:44 +00:00
|
|
|
struct foo f;
|
|
|
|
struct foo *p;
|
2017-07-16 17:00:01 +00:00
|
|
|
} bar;
|
|
|
|
|
2017-07-18 18:22:44 +00:00
|
|
|
|
2017-07-22 21:39:39 +00:00
|
|
|
bar baz[2] = {1, 2, 3, 4, 5, 6};
|
|
|
|
|
2017-07-29 06:37:34 +00:00
|
|
|
bar *list[2];
|
|
|
|
|
2017-07-18 18:22:44 +00:00
|
|
|
//NYACC
|
|
|
|
//#define offsetof(type, field) ((size_t) &((type *)0)->field)
|
|
|
|
#if __MESC__
|
|
|
|
#define offsetof(type, field) (&((type *)0)->field)
|
|
|
|
#else
|
|
|
|
#define offsetof(type, field) ((size_t)&((type *)0)->field)
|
|
|
|
#endif
|
|
|
|
|
2017-07-16 17:00:01 +00:00
|
|
|
int
|
|
|
|
test ()
|
|
|
|
{
|
2017-07-16 21:39:59 +00:00
|
|
|
foo f = {1};
|
|
|
|
printf ("f.i=%d\n", f.i);
|
2017-07-16 17:00:01 +00:00
|
|
|
|
2017-07-18 18:22:44 +00:00
|
|
|
bar b = {1, 2, &f};
|
2017-07-16 17:00:01 +00:00
|
|
|
printf ("b.i=%d\n", b.i);
|
2017-07-18 18:22:44 +00:00
|
|
|
|
|
|
|
printf ("b.f.i=%d\n", b.f.i);
|
|
|
|
if (b.f.i != 2) return 1;
|
|
|
|
|
|
|
|
printf ("b.p->i=%d\n", b.p->i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (b.p->i != 1) return 2;
|
2017-07-18 18:22:44 +00:00
|
|
|
|
2017-07-16 21:39:59 +00:00
|
|
|
bar* p = &b;
|
|
|
|
p->i = 2;
|
|
|
|
printf ("p->i=%d\n", b.i);
|
|
|
|
|
2017-07-17 05:33:38 +00:00
|
|
|
p->i++;
|
|
|
|
printf ("p->i=%d\n", b.i);
|
|
|
|
|
|
|
|
p->i--;
|
|
|
|
printf ("p->i=%d\n", b.i);
|
|
|
|
|
2017-07-18 18:22:44 +00:00
|
|
|
printf ("p->f.i=%d\n", p->f.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (p->f.i != 2) return 3;
|
2017-07-18 18:22:44 +00:00
|
|
|
|
|
|
|
printf ("p->p->i=%d\n", p->p->i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (p->p->i != 1) return 4;
|
2017-07-17 05:33:38 +00:00
|
|
|
|
2017-07-16 21:39:59 +00:00
|
|
|
bar** pp = &p;
|
|
|
|
(*pp)->i = 3;
|
|
|
|
printf ("(*pp)->i=%d\n", b.i);
|
2017-07-16 17:00:01 +00:00
|
|
|
|
2017-07-17 05:54:48 +00:00
|
|
|
printf ("sizeof i:%d\n", sizeof (p->i));
|
2017-07-29 06:37:34 +00:00
|
|
|
if ((sizeof p->i) != 4) return 5;
|
2017-07-18 18:22:44 +00:00
|
|
|
|
|
|
|
printf ("offsetof g=%d\n", (offsetof (bar ,f)));
|
2017-07-29 06:37:34 +00:00
|
|
|
if ((offsetof (bar ,f)) != 4) return 6;
|
2017-07-18 18:22:44 +00:00
|
|
|
|
|
|
|
printf ("(*pp)->b.i=%d\n", (*pp)->f.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if ((*pp)->f.i != 2) return 7;
|
2017-07-17 05:54:48 +00:00
|
|
|
|
2017-07-29 06:37:34 +00:00
|
|
|
if (baz[0].i != 1) return 8;
|
2017-07-22 21:39:39 +00:00
|
|
|
printf ("baz[0].f.i=%d\n", baz[0].f.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (baz[0].f.i != 2) return 9;
|
2017-07-22 21:39:39 +00:00
|
|
|
|
|
|
|
printf ("baz[1].i=%d\n", baz[1].i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (baz[1].i != 4) return 10;
|
2017-07-22 21:39:39 +00:00
|
|
|
printf ("baz[1].f.i=%d\n", baz[1].f.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (baz[1].f.i != 5) return 11;
|
2017-07-22 21:39:39 +00:00
|
|
|
|
2017-07-23 08:44:17 +00:00
|
|
|
bar one = {0};
|
|
|
|
printf ("one.i\n", one.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (one.i != 0) return 12;
|
2017-07-23 08:44:17 +00:00
|
|
|
printf ("one.f.i\n", one.f.i);
|
2017-07-29 06:37:34 +00:00
|
|
|
if (one.f.i != 0) return 13;
|
|
|
|
|
|
|
|
bar b0 = {2};
|
|
|
|
struct foo f0 = {0};
|
|
|
|
struct foo *pf = &f0;
|
|
|
|
list[0] = &b0;
|
|
|
|
list[0]->p = pf;
|
|
|
|
|
|
|
|
eputs ("b0.i="); eputs (itoa (b0.i)); eputs ("\n");
|
|
|
|
if (b0.i != 2) return 14;
|
|
|
|
eputs ("b0.p->i="); eputs (itoa (b0.p->i)); eputs ("\n");
|
|
|
|
if (b0.p->i != 0) return 15;
|
2017-07-23 08:44:17 +00:00
|
|
|
|
2017-07-16 17:00:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|