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
5
6from . import test_libear
7from . import test_compilation
8from . import test_clang
9from . import test_report
10from . import test_analyze
11from . import test_intercept
12from . import test_shell
13
14
15def 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
24