]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Tests/TianoCompress.py
BaseTools:Add [packages] section in dsc file
[mirror_edk2.git] / BaseTools / Tests / TianoCompress.py
index e141364162118142df6bfa92b907a4b735f62839..685968b18fb3d6aed09e81d8fbdb483b229f882d 100644 (file)
@@ -3,18 +3,13 @@
 #\r
 #  Copyright (c) 2008, 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
 # Import Modules\r
 #\r
+from __future__ import print_function\r
 import os\r
 import random\r
 import sys\r
@@ -52,11 +47,11 @@ class Tests(TestTools.BaseToolsTest):
         finish = self.ReadTmpFile('output2')\r
         startEqualsFinish = start == finish\r
         if not startEqualsFinish:\r
-            print\r
-            print 'Original data did not match decompress(compress(data))'\r
+            print()\r
+            print('Original data did not match decompress(compress(data))')\r
             self.DisplayBinaryData('original data', start)\r
             self.DisplayBinaryData('after compression', self.ReadTmpFile('output1'))\r
-            self.DisplayBinaryData('after decomression', finish)\r
+            self.DisplayBinaryData('after decompression', finish)\r
         self.assertTrue(startEqualsFinish)\r
 \r
     def testRandomDataCycles(self):\r