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
6import unittest
7
8import tests.unit
9import tests.functional.cases
10
11
12def suite():
13    loader = unittest.TestLoader()
14    suite = unittest.TestSuite()
15    suite.addTests(loader.loadTestsFromModule(tests.unit))
16    suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
17    return suite
18