diff options
author | Martin Kühl <martin.kuehl@posteo.net> | 2021-10-28 10:25:09 +0200 |
---|---|---|
committer | Martin Kühl <martin.kuehl@posteo.net> | 2021-10-28 10:25:09 +0200 |
commit | f66e7f36ffba13e5eac5bac965f128c39642c174 (patch) | |
tree | cb695f2a0a4cdff3019cbcb0bae76b95eb3d126b /fuzzers | |
parent | 9b04a3076d419279ac43f165be89a9893f9f0670 (diff) | |
download | libgit2-f66e7f36ffba13e5eac5bac965f128c39642c174.tar.gz |
libgit2_clar is now libgit2_tests
in #6083 the test runner was renamed to libgit2_tests,
but not all references to the old name were updated.
this change changes all of them to use the new name.
Diffstat (limited to 'fuzzers')
-rw-r--r-- | fuzzers/corpora/objects/blob | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzzers/corpora/objects/blob b/fuzzers/corpora/objects/blob index 2031037b1..b09444c80 100644 --- a/fuzzers/corpora/objects/blob +++ b/fuzzers/corpora/objects/blob @@ -187,18 +187,18 @@ Once built, you can run the tests from the `build` directory with the command Alternatively you can run the test suite directly using, - $ ./libgit2_clar + $ ./libgit2_tests Invoking the test suite directly is useful because it allows you to execute individual tests, or groups of tests using the `-s` flag. For example, to run the index tests: - $ ./libgit2_clar -sindex + $ ./libgit2_tests -sindex To run a single test named `index::racy::diff`, which corresponds to the test function (`test_index_racy__diff`)[https://github.com/libgit2/libgit2/blob/master/tests/index/racy.c#L23]: - $ ./libgit2_clar -sindex::racy::diff + $ ./libgit2_tests -sindex::racy::diff The test suite will print a `.` for every passing test, and an `F` for any failing test. An `S` indicates that a test was skipped because it is not |