Skip to content

Commit

Permalink
Fix some unicode tests (#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros committed Jan 2, 2022
1 parent 8e8cae4 commit 9e8babd
Show file tree
Hide file tree
Showing 8 changed files with 469 additions and 371 deletions.
14 changes: 3 additions & 11 deletions Jint.Tests.Test262/Test262Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,6 @@ public static IEnumerable<object[]> SourceFiles(string pathPrefix, bool skipped)
skip = true;
reason = "not in spec yet";
break;
case "u180e":
skip = true;
reason = "unicode/regexp not implemented";
break;
case "regexp-match-indices":
skip = true;
reason = "regexp-match-indices not implemented";
Expand Down Expand Up @@ -323,16 +319,12 @@ public static IEnumerable<object[]> SourceFiles(string pathPrefix, bool skipped)
reason = "Esprima problem, Unexpected token *";
}

if (name.StartsWith("built-ins/RegExp/property-escapes/generated/"))
{
skip = true;
reason = "Esprima problem, Invalid regular expression";
}
// Unicode regular expressions

if (name.StartsWith("built-ins/RegExp/unicode_"))
if (name.StartsWith("built-ins/RegExp/property-escapes/generated/"))
{
skip = true;
reason = "Unicode support and its special cases need more work";
reason = "Esprima problem";
}

// Promises
Expand Down

0 comments on commit 9e8babd

Please sign in to comment.