xref: /aosp_15_r20/external/clang/tools/scan-build-py/tests/__init__.py (revision 67e74705e28f6214e480b399dd47ea732279e315)
1# -*- coding: utf-8 -*-
2#                     The LLVM Compiler Infrastructure
3#
4# This file is distributed under the University of Illinois Open Source
5# License. See LICENSE.TXT for details.
6
7import unittest
8
9import tests.unit
10import tests.functional.cases
11
12
13def suite():
14    loader = unittest.TestLoader()
15    suite = unittest.TestSuite()
16    suite.addTests(loader.loadTestsFromModule(tests.unit))
17    suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
18    return suite
19