aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/git/git_test.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/vcs: move from pkg/gitDmitry Vyukov2018-06-271-239/+0
| | | | Rename pkg/git to pkg/vcs because we need to support not only git.
* pkg/git: extract relevant email addresses from commitsDmitry Vyukov2018-05-171-0/+65
| | | | Update #501
* pkg/git: add PreviousReleaseTagsDmitry Vyukov2018-05-141-0/+45
| | | | | | | PreviousReleaseTags returns list of preceding release tags that are reachable from the given commit. Update #501
* pkg/git: remove duplicated code in testsDmitry Vyukov2018-05-071-65/+47
| | | | Update #538
* dashboard/app: allow testing fixes on exact commit and without patchDmitry Vyukov2018-04-241-0/+25
| | | | | | | | | | This implements 2 features: 1. It's now possible to specify exact commit when testing as: 2. It's possible to test without patch attached assuming the patch is already committed to the tested tree. Fixes #558
* dashboard/app: extract fixing tags from commitsDmitry Vyukov2017-12-271-0/+48
| | | | | | | | | | | | | Support the new scheme of associating fixing commits with bugs. Now we provide a tag along the lines of: Reported-by: <syzbot+a4a91f6fc35e102@syzkaller.appspotmail.com> The tag is supposed to be added to the commit. Then we parse commit logs and extract these tags. The final part on the dashboard is not ready yet, but syz-ci should already parse and send the tags.
* pkg/git: provide more helper functionsDmitry Vyukov2017-11-161-0/+51
| | | | | Add Patch, Checkout, CheckRepoAddress and CheckBranch. Will be needed for patch testing.
* syz-ci: improve commit matchingDmitry Vyukov2017-11-071-0/+23
1. Fetch last 200K commits instead of commits for past year. For merged commits both author date and commit date can be arbitrary long in past (e.g. we got a commit dated by 2014). 2. Strip some commit prefixes from commits. We have some trees where backports are prefixed with "BACKPORT:". Previously we could no match such commits.