aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/python/li_std_vector_runme.py
blob: 71460519d4deb7f4b80f06a12c1b29b604d8a0ef (plain)
1
2
3
4
5
6
7
8
9
10
from li_std_vector import *

if typedef_test(101) != 101:
    raise RuntimeError

try:
  sv = StructVector([None, None])
  raise RuntimeError("Using None should result in a TypeError")
except TypeError:
  pass