[ConstraintElim] Add support for decomposing gep nuw (#118639)
[llvm-project.git] / clang / tools / scan-build-py / tests / unit / __init__.py
blob83a04743e6a1db34000b5e7e97cd1e79842d58c9
1 # -*- coding: utf-8 -*-
2 # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
3 # See https://llvm.org/LICENSE.txt for license information.
4 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 from . import test_libear
7 from . import test_compilation
8 from . import test_clang
9 from . import test_report
10 from . import test_analyze
11 from . import test_intercept
12 from . import test_shell
15 def load_tests(loader, suite, _):
16 suite.addTests(loader.loadTestsFromModule(test_libear))
17 suite.addTests(loader.loadTestsFromModule(test_compilation))
18 suite.addTests(loader.loadTestsFromModule(test_clang))
19 suite.addTests(loader.loadTestsFromModule(test_report))
20 suite.addTests(loader.loadTestsFromModule(test_analyze))
21 suite.addTests(loader.loadTestsFromModule(test_intercept))
22 suite.addTests(loader.loadTestsFromModule(test_shell))
23 return suite