diff options
| author | Eli Schwartz <eschwartz93@gmail.com> | 2024-07-28 13:37:35 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2024-07-30 14:13:12 -0400 |
| commit | 077d540c10a103fd5a41d0747b8140fef87b02ef (patch) | |
| tree | 731978e5e407011fee278da2f848617b6958652d /unittests/linuxliketests.py | |
| parent | 28ab1ce39a7889c681cf6874f9062baa97b1f5f7 (diff) | |
| download | meson-077d540c10a103fd5a41d0747b8140fef87b02ef.tar.gz | |
unittests: fix EncodingWarnings. minus 123 warnings collected by pytest
Diffstat (limited to 'unittests/linuxliketests.py')
| -rw-r--r-- | unittests/linuxliketests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py index 16997e393..cfad8fece 100644 --- a/unittests/linuxliketests.py +++ b/unittests/linuxliketests.py @@ -1703,7 +1703,7 @@ class LinuxlikeTests(BasePlatformTests): p = subprocess.run([ar, 't', outlib], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL, - text=True, timeout=1) + encoding='utf-8', text=True, timeout=1) obj_files = p.stdout.strip().split('\n') self.assertEqual(len(obj_files), 1) self.assertTrue(obj_files[0].endswith('-prelink.o')) |
