From d98b3553364cfcb2169583085c92937b98683a1f Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Sat, 1 May 2021 18:54:27 -0400 Subject: [PATCH] test: run message and pseudo-tty tests in parallel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/38502 Reviewed-By: Anna Henningsen Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Rich Trott Reviewed-By: James M Snell --- test/message/testcfg.py | 1 + test/pseudo-tty/testcfg.py | 1 + 2 files changed, 2 insertions(+) diff --git a/test/message/testcfg.py b/test/message/testcfg.py index bd56a8eba8c4ce..4be454b55c9053 100644 --- a/test/message/testcfg.py +++ b/test/message/testcfg.py @@ -43,6 +43,7 @@ def __init__(self, path, file, expected, arch, mode, context, config): self.config = config self.arch = arch self.mode = mode + self.parallel = True def IgnoreLine(self, str): """Ignore empty lines and valgrind output.""" diff --git a/test/pseudo-tty/testcfg.py b/test/pseudo-tty/testcfg.py index ad9461f026366f..df380ad31eff1e 100644 --- a/test/pseudo-tty/testcfg.py +++ b/test/pseudo-tty/testcfg.py @@ -48,6 +48,7 @@ def __init__(self, path, file, expected, input_arg, arch, mode, context, config) self.config = config self.arch = arch self.mode = mode + self.parallel = True def IgnoreLine(self, str_arg): """Ignore empty lines and valgrind output."""