From b7285264646c21702afa7317ed90a0d6c06814f8 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 14 Apr 2025 16:07:15 +0200 Subject: tools/syz-declextract: ignore files with non US-ASCII chars --- pkg/ast/testdata/errors.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/ast/testdata') diff --git a/pkg/ast/testdata/errors.txt b/pkg/ast/testdata/errors.txt index a8a4aa197..0d8488134 100644 --- a/pkg/ast/testdata/errors.txt +++ b/pkg/ast/testdata/errors.txt @@ -20,7 +20,7 @@ int_flags4 = 1, -2- ### bad integer "-2-" str_flags0 = "foo", "bar" str_flags1 = "non terminated ### string literal is not terminated -str_flags2 = "bad chars здесь" ### illegal character U+00D0 'Ð' in string literal +str_flags2 = "bad chars здесь" ### illegal character U+00D0 'Ð' in string literal "bad chars здесь" str_flags3 = "string", not a string ### unexpected identifier, expecting '\n' str_flags4 = "string", 42 ### unexpected int, expecting string, hex string, identifier str_flags5 = `x` ### bad hex string literal: encoding/hex: invalid byte: U+0078 'x' -- cgit mrf-deployment