Fix test262 excludelist update on Windows (#4185)

JerryScript-DCO-1.0-Signed-off-by: Csaba Osztrogonác csaba.osztrogonac@h-lab.eu
This commit is contained in:
Csaba Osztrogonác
2020-09-14 17:29:57 +02:00
committed by GitHub
parent c013fade26
commit f834340608
+1
View File
@@ -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: