summaryrefslogtreecommitdiff
path: root/support/regression/tests/increment.c
blob: bfbb22a0550b61aa573e24dc67f7cdc811dd6ca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** Simple test for increment

    type: signed char, int, long
    storage: static, 
    attr: volatile
*/
#include <testfwk.h>

static void
testIncrement(void)
{
    {attr} {storage} {type} i;
    i = 0;
    i--;
    ASSERT(i == -1);
}