| Index: test/cctest/test-parsing.cc
|
| diff --git a/test/cctest/test-parsing.cc b/test/cctest/test-parsing.cc
|
| index f2e90ae259902619df96b46725597579bbd395c0..c03e2791115c0940c7d1ba46f0568768868066a0 100644
|
| --- a/test/cctest/test-parsing.cc
|
| +++ b/test/cctest/test-parsing.cc
|
| @@ -7161,6 +7161,12 @@ TEST(TemplateEscapesPositiveTests) {
|
| "tag`\\u{110000}${0}right`",
|
| "tag`left${0}\\u{110000}`",
|
| "tag`left${0}\\u{110000}${1}right`",
|
| + "tag` ${tag`\\u`}`",
|
| + "tag` ``\\u`",
|
| + "tag`\\u`` `",
|
| + "tag`\\u``\\u`",
|
| + "` ${tag`\\u`}`",
|
| + "` ``\\u`",
|
| NULL};
|
| // clang-format on
|
|
|
| @@ -7239,6 +7245,8 @@ TEST(TemplateEscapesNegativeTests) {
|
| "`left${0}\\u{110000}`",
|
| "`left${0}\\u{110000}${1}right`",
|
| "`\\1``\\2`",
|
| + "tag` ${`\\u`}`",
|
| + "`\\u```",
|
| NULL};
|
| // clang-format on
|
|
|
|
|