File: test.py

package info (click to toggle)
alire 1.2.1-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 13,124 kB
  • sloc: ada: 77,497; python: 6,605; sh: 477; ansic: 347; makefile: 258; javascript: 87; xml: 40
file content (14 lines) | stat: -rw-r--r-- 298 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Do internal self-tests that are simpler to do in Ada code than with a fully-
fledged test case.
"""

from glob import glob

from drivers.alr import run_alr

p = run_alr('dev', '--test', complain_on_error=True, quiet=True)
assert p.status == 0, "alr should have error code 0"


print('SUCCESS')