From ac9434ffcb9fcef827a39e94e8ef618f68de2f02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=BF=97=E6=B6=9B?= Date: Sun, 18 Sep 2022 12:47:46 +0000 Subject: [PATCH] =?UTF-8?q?TEST(QuoteMeta,=20HasNull)=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E7=94=A8=E4=BE=8B=E9=80=9A=E8=BF=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 刘志涛 --- re2/testing/re2_test.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/re2/testing/re2_test.cc b/re2/testing/re2_test.cc index 88fbe49..28ee5a4 100644 --- a/re2/testing/re2_test.cc +++ b/re2/testing/re2_test.cc @@ -455,16 +455,12 @@ TEST(QuoteMeta, HasNull) { // string with one null character has_null += '\0'; - /*待处理的 TestQuoteMeta(has_null); - */ NegativeTestQuoteMeta(has_null, ""); // Don't want null-followed-by-'1' to be interpreted as '\01'. has_null += '1'; - /*待处理的 TestQuoteMeta(has_null); - */ NegativeTestQuoteMeta(has_null, "\1"); } -- Gitee