Last change
on this file was 80721, checked in by vboxsync, 5 years ago |
Devices/EFI/FirmwareNew: Start upgrade process to edk2-stable201908 (compiles on Windows and works to some extent), bugref:4643
|
-
Property svn:eol-style
set to
native
|
File size:
517 bytes
|
Line | |
---|
1 | ## @file
|
---|
2 | # Unit tests for C based BaseTools
|
---|
3 | #
|
---|
4 | # Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 |
|
---|
9 | ##
|
---|
10 | # Import Modules
|
---|
11 | #
|
---|
12 | import os
|
---|
13 | import sys
|
---|
14 | import unittest
|
---|
15 |
|
---|
16 | import TianoCompress
|
---|
17 | modules = (
|
---|
18 | TianoCompress,
|
---|
19 | )
|
---|
20 |
|
---|
21 |
|
---|
22 | def TheTestSuite():
|
---|
23 | suites = list(map(lambda module: module.TheTestSuite(), modules))
|
---|
24 | return unittest.TestSuite(suites)
|
---|
25 |
|
---|
26 | if __name__ == '__main__':
|
---|
27 | allTests = TheTestSuite()
|
---|
28 | unittest.TextTestRunner().run(allTests)
|
---|
29 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.