[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / tools / scan-build-py / tests / __init__.py
blob58a1282c6bcff9b3203fd7e598660109f27139f6
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 import os
7 import sys
9 this_dir = os.path.dirname(os.path.realpath(__file__))
10 sys.path.append(os.path.join(os.path.dirname(this_dir), "lib"))
12 import unittest
14 import tests.unit
15 import tests.functional.cases
18 def suite():
19 loader = unittest.TestLoader()
20 suite = unittest.TestSuite()
21 suite.addTests(loader.loadTestsFromModule(tests.unit))
22 suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
23 return suite