aboutsummaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
Diffstat (limited to 'unittests')
-rw-r--r--unittests/baseplatformtests.py2
-rw-r--r--unittests/linuxliketests.py2
-rw-r--r--unittests/rewritetests.py4
3 files changed, 4 insertions, 4 deletions
diff --git a/unittests/baseplatformtests.py b/unittests/baseplatformtests.py
index bd2f902..2f8064e 100644
--- a/unittests/baseplatformtests.py
+++ b/unittests/baseplatformtests.py
@@ -160,7 +160,7 @@ class BasePlatformTests(TestCase):
p = subprocess.run(command, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, env=env,
encoding='utf-8',
- universal_newlines=True, cwd=workdir, timeout=60 * 5)
+ text=True, cwd=workdir, timeout=60 * 5)
print(p.stdout)
if p.returncode != 0:
if 'MESON_SKIP_TEST' in p.stdout:
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py
index 594e9f0..ade489d 100644
--- a/unittests/linuxliketests.py
+++ b/unittests/linuxliketests.py
@@ -1717,7 +1717,7 @@ class LinuxlikeTests(BasePlatformTests):
p = subprocess.run([ar, 't', outlib],
stdout=subprocess.PIPE,
stderr=subprocess.DEVNULL,
- universal_newlines=True, timeout=1)
+ 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'))
diff --git a/unittests/rewritetests.py b/unittests/rewritetests.py
index 1e6a398..1d90f2a 100644
--- a/unittests/rewritetests.py
+++ b/unittests/rewritetests.py
@@ -32,8 +32,8 @@ class RewriterTests(BasePlatformTests):
if isinstance(args, str):
args = [args]
command = self.rewrite_command + ['--verbose', '--skip', '--sourcedir', directory] + args
- p = subprocess.run(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
- universal_newlines=True, timeout=60)
+ p = subprocess.run(command, capture_output=True,
+ text=True, timeout=60)
print('STDOUT:')
print(p.stdout)
print('STDERR:')