Commit 17f8f12b authored by Iain Ireland's avatar Iain Ireland Committed by Commit Bot

[regexp] Document incorrect assertion in intl/regress-10573.js

There are at least three equivalence classes where this assertion
should not actually hold:

  '\u0390\u1fd3',              // ΐΐ
  '\u03b0\u1fe3',              // ΰΰ
  '\ufb05\ufb06',              // ſtst

Bug: v8:10591
Change-Id: I26cb43d2e67c54e689f1831ea13be46c73d5e92d
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2231595Reviewed-by: 's avatarJakob Gruber <jgruber@chromium.org>
Commit-Queue: Jakob Gruber <jgruber@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68246}
parent 00fb782b
......@@ -26,6 +26,9 @@ function TestEquivalenceClass(eclass) {
var shouldMatch = Canonicalize(c1) === Canonicalize(c2);
assertEquals(backref.test(cc), shouldMatch);
//TODO(v8:10591): Update expectations for ΐΐ, ΰΰ, and ſtst once
//case folding is fixed.
assertEquals(backrefUnicode.test(cc), true);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment