summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* Update main.ymlEdward Thomson2020-06-061-3/+3
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-6/+4
|
* Update main.ymlEdward Thomson2020-06-061-4/+6
|
* Update main.ymlEdward Thomson2020-06-061-10/+10
|
* Update main.ymlEdward Thomson2020-06-061-11/+16
|
* Update main.ymlEdward Thomson2020-06-060-0/+0
|
* Update main.ymlEdward Thomson2020-06-061-1/+2
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-13/+8
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-9/+14
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-5/+7
|
* Update main.ymlEdward Thomson2020-06-061-2/+7
|
* Update main.ymlEdward Thomson2020-06-061-17/+15
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-2/+3
|
* Update main.ymlEdward Thomson2020-06-061-1/+3
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-16/+16
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-0/+1
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-2/+2
|
* Update main.ymlEdward Thomson2020-06-061-1/+8
|
* Update main.ymlEdward Thomson2020-06-061-1/+1
|
* Update main.ymlEdward Thomson2020-06-061-3/+7
|
* Update main.ymlEdward Thomson2020-06-061-1/+2
|
* Create main.ymlEdward Thomson2020-06-061-0/+21
|
* Merge pull request #5541 from libgit2/ethomson/clar_tapEdward Thomson2020-06-0525-170/+336
|\ | | | | clar: add tap output option
| * clar: include the function nameethomson/clar_tapEdward Thomson2020-06-0525-161/+182
| |
| * clar: add tap outputEdward Thomson2020-06-043-3/+99
| |
| * clar: add an output abstraction layerEdward Thomson2020-06-033-12/+31
| | | | | | | | | | Add an output abstraction layer, with a single output format, "clap", the clar protocol, which is the current output format for clar.
| * clar: parse arguments before printing the headerEdward Thomson2020-06-031-3/+3
| | | | | | | | | | We want to parse arguments before we start printing any output; the arguments themselves may impact the way we display that output.
| * clar: print indirectionEdward Thomson2020-06-031-6/+36
| |
* | Merge pull request #5545 from libgit2/ethomson/diff_parseEdward Thomson2020-06-051-1/+0
|\ \ | | | | | | diff::parse: don't include `diff.h`
| * | diff::parse: don't include `diff.h`ethomson/diff_parseEdward Thomson2020-06-051-1/+0
|/ / | | | | | | | | We don't call any internal functions in the test; we don't need to include `../src/diff.h`.
* | Merge pull request #5543 from libgit2/ethomson/release_script_typoPatrick Steinhardt2020-06-041-1/+1
|\ \ | | | | | | release script: fix typo
| * | release script: fix typoethomson/release_script_typoEdward Thomson2020-06-041-1/+1
|/ /
* | Merge pull request #5537 from libgit2/ethomson/clar_exactmatchPatrick Steinhardt2020-06-031-0/+9
|\ \ | | | | | | tests: offer exact name matching with a `$` suffix
| * | offer exact name matching with a `$` suffixethomson/clar_exactmatchEdward Thomson2020-06-021-0/+9
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | When using `-s` to specify a particular test, it will do a prefix match. Thus, `-sapply::both::rename_a_to_b_to_c` will match both a test named `test_apply_both__rename_a_to_b_to_c` and a test that begins with that name, like `test_apply_both__rename_a_to_b_to_c_exact`. Permit a trailing `$` to `-s` syntax. This allows a user to specify `-sapply::both::rename_a_to_b_to_c$` to match _only_ the `test_apply_both__rename_a_to_b_to_c` function. We already filter to ensure that the given prefix matches the current test name. Also ensure that the length of the test name matches the length of the filter, sans trailing `$`.