]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Tests/TestTools.py
EmbeddedPkg/VirtualKeyboard: Fix a typo in EFI_INVALID_PARAMETER
[mirror_edk2.git] / BaseTools / Tests / TestTools.py
index 65948a7ae2ec039f8dd089673b5e659510cb57f1..1099fd4eeaea074fc8a6f620874cfdcf60afcd27 100644 (file)
@@ -4,13 +4,7 @@ from __future__ import print_function
 #\r
 #  Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>\r
 #\r
-#  This program and the accompanying materials\r
-#  are licensed and made available under the terms and conditions of the BSD License\r
-#  which accompanies this distribution.  The full text of the license may be found at\r
-#  http://opensource.org/licenses/bsd-license.php\r
-#\r
-#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+#  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 ##\r
@@ -24,6 +18,7 @@ import shutil
 import subprocess\r
 import sys\r
 import unittest\r
+import codecs\r
 \r
 TestsDir = os.path.realpath(os.path.split(sys.argv[0])[0])\r
 BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..'))\r
@@ -150,7 +145,7 @@ class BaseToolsTest(unittest.TestCase):
             with open(self.GetTmpFilePath(fileName), 'wb') as f:\r
                 f.write(data)\r
         else:\r
-            with open(self.GetTmpFilePath(fileName), 'w') as f:\r
+            with codecs.open(self.GetTmpFilePath(fileName), 'w', encoding='utf-8') as f:\r
                 f.write(data)\r
 \r
     def GenRandomFileData(self, fileName, minlen = None, maxlen = None):\r
@@ -186,3 +181,4 @@ class BaseToolsTest(unittest.TestCase):
 \r
         os.environ['PATH'] = self.savedEnvPath\r
         sys.path = self.savedSysPath\r
+\r