VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/Firmware/BaseTools/Tests/CToolsTests.py

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#
12import os
13import sys
14import unittest
15
16import TianoCompress
17modules = (
18 TianoCompress,
19 )
20
21
22def TheTestSuite():
23 suites = list(map(lambda module: module.TheTestSuite(), modules))
24 return unittest.TestSuite(suites)
25
26if __name__ == '__main__':
27 allTests = TheTestSuite()
28 unittest.TextTestRunner().run(allTests)
29
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette