summaryrefslogtreecommitdiff
path: root/utils/lit/tests/unittest-adaptor.py
blob: 0848cd22baae858309cccc782b8ebe31f735b065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Check the lit adaption to run under unittest.
#
# RUN: %{python} %s %{inputs}/unittest-adaptor 2> %t.err
# RUN: FileCheck < %t.err %s
#
# CHECK-DAG: unittest-adaptor :: test-two.txt ... FAIL
# CHECK-DAG: unittest-adaptor :: test-one.txt ... ok

import unittest
import sys

import lit
import lit.discovery

input_path = sys.argv[1]
unittest_suite = lit.discovery.load_test_suite([input_path])
runner = unittest.TextTestRunner(verbosity=2)
runner.run(unittest_suite)