From 0ffe1665bd0ee457dd4c1083811e1592a5e2908d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20G=C3=A1l?= Date: Mon, 28 Sep 2020 16:14:23 +0200 Subject: [PATCH] Fix a typo in case of single thread/process execution in test262 harness (#4223) JerryScript-DCO-1.0-Signed-off-by: Peter Gal pgal.usz@partner.samsung.com --- tools/runners/test262-harness.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/runners/test262-harness.py b/tools/runners/test262-harness.py index 71c7001f7..22077c814 100755 --- a/tools/runners/test262-harness.py +++ b/tools/runners/test262-harness.py @@ -824,7 +824,7 @@ class TestSuite(object): if job_count == 1: for case in cases: - result = case.run_pipe() + result = case.run() if logname: self.write_log(result) progress.has_run(result)