aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/email/patch_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/email: add test for git patches containing empty linesPimyn Girgis2025-11-031-0/+34
|
* pkg/email: refactor ParsePatchAleksandr Nogikh2022-12-051-7/+11
| | | | | Currently the function returns the values that are not being used anywhere. Refactor it.
* all: use more respective languageDmitry Vyukov2020-06-111-2/+0
| | | | | | | | Some terms are normalised on the technical level but may be oppressive on a societal level. Replace them with more technically neutral terms. See the following doc for a longer version: https://tools.ietf.org/id/draft-knodel-terminology-00.html
* pkg/email: support quilt patch formatAndrey Konovalov2019-04-231-6/+121
| | | | | Quilt uses a slightly different patch format to traditional git diff/format-patch. Support it.
* all: fix gometalinter warningsDmitry Vyukov2018-03-081-1/+1
| | | | Fix typos, non-canonical code, remove dead code, etc.
* pkg/email: truncate garbage after patchesDmitry Vyukov2017-11-171-0/+62
|
* pkg/email: move patch parsing from pkg/kernelDmitry Vyukov2017-06-301-0/+306
ParsePatch is used by appengine app. Appengine apps can't depend on syscall/unsafe, but pkg/kernel currently does. Move patch parsing to pkg/email which does not depend on syscall/unsafe.