]> git.proxmox.com Git - mirror_frr.git/blob - python/runtests.py
ospfd: fix memory leak on SPF calculation
[mirror_frr.git] / python / runtests.py
1 import pytest
2 import sys
3 import os
4
5 try:
6 import _clippy
7 except ImportError:
8 sys.stderr.write(
9 """these tests need to be run with the _clippy C extension
10 module available. Try running "clippy runtests.py ...".
11 """
12 )
13 sys.exit(1)
14
15 os.chdir(os.path.dirname(os.path.abspath(__file__)))
16 raise SystemExit(pytest.main(sys.argv[1:]))