]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Tests/CToolsTests.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[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
2e351cbe 6# SPDX-License-Identifier: BSD-2-Clause-Patent\r
f51461c8
LG
7#\r
8\r
9##\r
10# Import Modules\r
11#\r
12import os\r
13import sys\r
14import unittest\r
15\r
16import TianoCompress\r
17modules = (\r
18 TianoCompress,\r
19 )\r
20\r
21\r
22def TheTestSuite():\r
fe906312 23 suites = list(map(lambda module: module.TheTestSuite(), modules))\r
f51461c8
LG
24 return unittest.TestSuite(suites)\r
25\r
26if __name__ == '__main__':\r
27 allTests = TheTestSuite()\r
28 unittest.TextTestRunner().run(allTests)\r
29\r