summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_boost_shared_ptr_bits_runme.py
blob: adf9ac4cf3fadd6fde278ac4e5261823d116a2be (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
from li_boost_shared_ptr_bits import *


def check(nd):
    nd.i = 200
    i = nd.i

    try:
        nd.notexist = 100
        passed = 0
    except:
        passed = 1

    if not passed:
        raise "Test failed"

nd = NonDynamic()
check(nd)
b = boing(nd)
check(b)

################################

v = VectorIntHolder()
v.push_back(IntHolder(11))
v.push_back(IntHolder(22))
v.push_back(IntHolder(33))

sum = sum(v)
if sum != 66:
    raise "sum is wrong"

################################
p = HiddenDestructor.create()