Skip to content

Commit 248a87e

Browse files
committed
Enable subprocess tests
1 parent a61d6b6 commit 248a87e

File tree

4 files changed

+288
-16
lines changed

4 files changed

+288
-16
lines changed

graalpython/com.oracle.graal.python.test/src/tests/test_tagged_unittests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def main():
219219
cmd.append(testfile)
220220

221221
print(" ".join(cmd))
222-
p = subprocess.run(cmd, **kwargs)
222+
p = subprocess.run(cmd, errors='backslashreplace', **kwargs)
223223
print("*stdout*")
224224
print(p.stdout)
225225
print("*stderr*")

0 commit comments

Comments
 (0)