blob: bde2376a672146934d6968b2643bd1a4133105c9 [file] [log] [blame]
Laszlo Nagybc687582016-01-12 22:38:41 +00001# -*- coding: utf-8 -*-
2# The LLVM Compiler Infrastructure
3#
4# This file is distributed under the University of Illinois Open Source
5# License. See LICENSE.TXT for details.
6
7import unittest
8
9import tests.unit
10import tests.functional.cases
11
12
13def suite():
14 loader = unittest.TestLoader()
15 suite = unittest.TestSuite()
16 suite.addTests(loader.loadTestsFromModule(tests.unit))
17 suite.addTests(loader.loadTestsFromModule(tests.functional.cases))
18 return suite