Home | History | Annotate | Download | only in tests
      1 # -*- 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 
      7 import unittest
      8 
      9 import tests.unit
     10 import tests.functional.cases
     11 
     12 
     13 def 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
     19