]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Tests/CToolsTests.py
Sync BaseTool trunk (version r2649) into EDKII BaseTools.
[mirror_edk2.git] / BaseTools / Tests / CToolsTests.py
CommitLineData
f51461c8
LG
1## @file\r
2# Unit tests for C based BaseTools\r
3#\r
4# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>\r
5#\r
6# This program and the accompanying materials\r
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php\r
10#\r
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13#\r
14\r
15##\r
16# Import Modules\r
17#\r
18import os\r
19import sys\r
20import unittest\r
21\r
22import TianoCompress\r
23modules = (\r
24 TianoCompress,\r
25 )\r
26\r
27\r
28def TheTestSuite():\r
29 suites = map(lambda module: module.TheTestSuite(), modules)\r
30 return unittest.TestSuite(suites)\r
31\r
32if __name__ == '__main__':\r
33 allTests = TheTestSuite()\r
34 unittest.TextTestRunner().run(allTests)\r
35\r