summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/run_test.py
blob: 7b5a9d5741f74a4f483f26c06910ba91caa016b6 (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
#!/usr/bin/env python
#
# Runs a single test. Results are printed out.
#
# * @author  Matthew Woehlke    June 2018
#

import test_uncrustify as tu

import argparse
import sys


# -----------------------------------------------------------------------------
def main():
    parser = argparse.ArgumentParser(description='Run uncrustify test')
    tu.add_test_arguments(parser)
    args = tu.parse_args(parser)

    test = tu.FormatTest()
    test.build_from_args(args)

    try:
        test.run(args)
    except tu.Failure as f:
        sys.stderr.write('{}\n'.format(f))
        sys.exit(-1)


# %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

if __name__ == '__main__':
    main()