mirror of https://github.com/acidanthera/audk.git
BaseTools:TestTools character encoding issue
Specifies encoding when opening a file using codecs Cc: Bob Feng <bob.c.feng@intel.com> Cc: Liming Gao <liming.gao@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Zhiju.Fan <zhijux.fan@intel.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Liming Gao <liming.gao@intel.com> Reviewed-by: Bob Feng <bob.c.feng@intel.com>
This commit is contained in:
parent
3f7cb70c5a
commit
31e3eeb5e3
|
@ -24,6 +24,7 @@ import shutil
|
|||
import subprocess
|
||||
import sys
|
||||
import unittest
|
||||
import codecs
|
||||
|
||||
TestsDir = os.path.realpath(os.path.split(sys.argv[0])[0])
|
||||
BaseToolsDir = os.path.realpath(os.path.join(TestsDir, '..'))
|
||||
|
@ -150,7 +151,7 @@ class BaseToolsTest(unittest.TestCase):
|
|||
with open(self.GetTmpFilePath(fileName), 'wb') as f:
|
||||
f.write(data)
|
||||
else:
|
||||
with open(self.GetTmpFilePath(fileName), 'w') as f:
|
||||
with codecs.open(self.GetTmpFilePath(fileName), 'w', encoding='utf-8') as f:
|
||||
f.write(data)
|
||||
|
||||
def GenRandomFileData(self, fileName, minlen = None, maxlen = None):
|
||||
|
|
Loading…
Reference in New Issue