summaryrefslogtreecommitdiff
path: root/tests/bionic/libc/bionic/test_static_init.cpp
blob: cbc4a59d77f409a9ba3aac9aaf8f2c6ce31fbcda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <stdlib.h>
#include <stdio.h>
#include "lib_static_init.h"

Foo  theFoo2;

int  main(int  argc, char**  argv)
{
    int  c = theFoo.getValue();

    /* check the counter on the library object
     * it must have been called first, and only once
     */
    if (c != 1) {
        printf("KO (counter(shared) == %d, expected 1)\n", c);
        return 1;
    }

    /* check the counter on the executable object,
     * it must have been called second, and only once
     */
    c = theFoo2.getValue();
    if (c != 2) {
        printf("KO (counter(executable) == %d, expected 2)\n", c);
        return 1;
    }

    printf("OK\n");
    return 0;
}