2014-01-27 06:23:15 +01:00
|
|
|
## @file
|
|
|
|
# Unit tests for Python based BaseTools
|
|
|
|
#
|
2015-06-24 01:34:14 +02:00
|
|
|
# Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
2019-04-04 01:03:11 +02:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
2014-01-27 06:23:15 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
##
|
|
|
|
# Import Modules
|
|
|
|
#
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
def TheTestSuite():
|
|
|
|
suites = []
|
|
|
|
import CheckPythonSyntax
|
|
|
|
suites.append(CheckPythonSyntax.TheTestSuite())
|
2015-06-24 01:34:14 +02:00
|
|
|
import CheckUnicodeSourceFiles
|
|
|
|
suites.append(CheckUnicodeSourceFiles.TheTestSuite())
|
2014-01-27 06:23:15 +01:00
|
|
|
return unittest.TestSuite(suites)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
allTests = TheTestSuite()
|
|
|
|
unittest.TextTestRunner().run(allTests)
|
|
|
|
|