VirtualBox

source: vbox/trunk/src/VBox/Devices/EFI/FirmwareNew/BaseTools/Tests/PythonToolsTests.py@ 101291

Last change on this file since 101291 was 80721, checked in by vboxsync, 6 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: 590 bytes
Line 
1## @file
2# Unit tests for Python based BaseTools
3#
4# Copyright (c) 2008 - 2015, 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
16
17def TheTestSuite():
18 suites = []
19 import CheckPythonSyntax
20 suites.append(CheckPythonSyntax.TheTestSuite())
21 import CheckUnicodeSourceFiles
22 suites.append(CheckUnicodeSourceFiles.TheTestSuite())
23 return unittest.TestSuite(suites)
24
25if __name__ == '__main__':
26 allTests = TheTestSuite()
27 unittest.TextTestRunner().run(allTests)
28
Note: See TracBrowser for help on using the repository browser.

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