24 lines · python
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-exception5 6from . import test_libear7from . import test_compilation8from . import test_clang9from . import test_report10from . import test_analyze11from . import test_intercept12from . import test_shell13 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 suite24