From c59d47f6525f89dadb701e0ddb591c9785af491d Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Mon, 20 Jan 2025 03:43:12 +0100 Subject: [PATCH] Keep the old behaviour which made the script detect bugs (although indirectly!) --- test/src/tester.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/tester.py b/test/src/tester.py index 1beacfe2a..803f5250f 100644 --- a/test/src/tester.py +++ b/test/src/tester.py @@ -140,7 +140,7 @@ class Issues: else: opts += " --safe=no" code = subprocess.run(self.conf.compiler + target + ' -O0 ' + opts + ' ' + debug + args, - universal_newlines=True, shell=True, encoding='utf-8', errors='replace', stdout=subprocess.PIPE, stderr=subprocess.PIPE) + universal_newlines=True, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) os.chdir(self.conf.cwd) if code.returncode != 0 and code.returncode != 1: self.set_failed()