Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/polymorphism.c

    r1f370451 r3787dc1  
    4747        S s;
    4848        s.i = i;
    49         assertf(s.i == i, "struct operation fails in polymorphic context.");
     49        assert(s.i == i);
    5050
    5151        B b;
     
    7373        {
    7474                // test aggregates with polymorphic members
    75                 typedef __attribute__((aligned(8))) uint32_t x_type;
    76                 typedef __attribute__((aligned(8))) uint64_t y_type;
     75                typedef uint32_t x_type;
     76                typedef uint64_t y_type;
    7777
    7878                x_type x = 3;
     
    8989                // ensure that the size of aggregates with polymorphic members
    9090                // matches the size of the aggregates in a monomorphic context
    91                 size_t ssz = struct_size(x, y);
    92                 size_t usz = union_size(x, y);
    93                 assertf( ssz == sizeof(S), "struct size differs in polymorphic context: %zd / %zd", ssz, sizeof(S));
    94                 assertf( usz == sizeof(U), "union size differs in polymorphic context: %zd / %zd", usz, sizeof(U));
     91                assert( struct_size(x, y) == sizeof(S) );
     92                assert( union_size(x, y) == sizeof(U) );
    9593
    9694                y_type ?=?(y_type & this, zero_t) {
     
    113111                u.f2 = 0;
    114112                u.f1 = x;
    115                 assertf(ret == u.f2, "union operation fails in polymorphic context.");
     113                assert(ret == u.f2);
    116114        }
    117115}
Note: See TracChangeset for help on using the changeset viewer.