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 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 13 14 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 24