From f834340608a8fc8be74e173aa0724227c9275987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Csaba=20Osztrogon=C3=A1c?= Date: Mon, 14 Sep 2020 17:29:57 +0200 Subject: [PATCH] Fix test262 excludelist update on Windows (#4185) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác csaba.osztrogonac@h-lab.eu --- tools/runners/run-test-suite-test262.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/runners/run-test-suite-test262.py b/tools/runners/run-test-suite-test262.py index e72bd2452..ff7bb4c08 100755 --- a/tools/runners/run-test-suite-test262.py +++ b/tools/runners/run-test-suite-test262.py @@ -110,6 +110,7 @@ def update_exclude_list(args): match = re.match('(=== )?(.*) (?:failed|passed) in (?:non-strict|strict)', line) if match: (unexpected, test) = match.groups() + test = test.replace('\\', '/') if unexpected: failing_tests.add(test + '.js') else: