aboutsummaryrefslogtreecommitdiff
path: root/libphobos/testsuite/libphobos.shared/link.d
blob: 433da66fcc3548d7ed58565bdf50d7e67035da9a (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import lib;

void testEH()
{
    bool passed;
    try
        lib.throwException();
    catch (Exception e)
        passed = true;
    assert(passed); passed = false;

    assert(lib.collectException({throw new Exception(null);}) !is null);
    assert(lib.collectException({lib.throwException();}) !is null);
}

void testGC()
{
    import core.memory;
    lib.alloc();
    lib.tls_alloc();
    lib.access();
    lib.tls_access();
    GC.collect();
    lib.tls_access();
    lib.access();
    lib.tls_free();
    lib.free();
}

import core.atomic : atomicOp;
shared static this() { assert(lib.shared_static_ctor == 1); }
shared static ~this() { assert(lib.shared_static_dtor == 0); }
shared uint static_ctor, static_dtor;
static this() { assert(lib.static_ctor == atomicOp!"+="(static_ctor, 1)); }
static ~this() { assert(lib.static_dtor + 1 == atomicOp!"+="(static_dtor, 1)); }

void testInit()
{
    import core.thread;

    assert(lib.static_ctor == 1);
    assert(lib.static_dtor == 0);
    static void foo()
    {
        assert(lib.shared_static_ctor == 1);
        assert(lib.shared_static_dtor == 0);
        assert(lib.static_ctor == 2);
        assert(lib.static_dtor == 0);
    }
    auto thr = new Thread(&foo);
    thr.start();
    assert(thr.join() is null);
    assert(lib.shared_static_ctor == 1);
    assert(lib.shared_static_dtor == 0);
    assert(lib.static_ctor == 2);
    assert(lib.static_dtor == 1);
}

void main()
{
    testEH();
    testGC();
    testInit();
}