summaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_boost_shared_ptr_bits_runme.py
blob: c6bd2f97abf7ae2f3d897533b19642039c78ffba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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)