aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/email/parser_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-01-07 14:32:50 +0100
committerDmitry Vyukov <dvyukov@google.com>2020-01-07 14:32:50 +0100
commit7042566e4bdaaec059aea4f53eeefc4f362648cd (patch)
treeceb86810a9148761db939f2ebccd7103319278a5 /pkg/email/parser_test.go
parent36860d8b256045601248ecfc0323ac838779e72b (diff)
pkg/email: accept #syz- prefix for commands
Some users spell the command as "#syz-dup:". Support this and few more variations.
Diffstat (limited to 'pkg/email/parser_test.go')
-rw-r--r--pkg/email/parser_test.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkg/email/parser_test.go b/pkg/email/parser_test.go
index ba027f8e7..f093a0d22 100644
--- a/pkg/email/parser_test.go
+++ b/pkg/email/parser_test.go
@@ -171,6 +171,24 @@ line 2
cmd: CmdNone,
args: "",
},
+ {
+ body: `#syz-fix: bar baz`,
+ cmd: CmdFix,
+ str: "fix:",
+ args: "bar baz",
+ },
+ {
+ body: `#syz-fix bar baz`,
+ cmd: CmdFix,
+ str: "fix",
+ args: "bar baz",
+ },
+ {
+ body: `#syz: fix: bar baz`,
+ cmd: CmdFix,
+ str: "fix:",
+ args: "bar baz",
+ },
// This is unfortunate case when a command is split by email client
// due to 80-column limitation.
{