From: Phillip Wood <phillip.wood123@gmail.com>
To: Patrick Steinhardt <ps@pks.im>, git@vger.kernel.org
Cc: "René Scharfe" <l.s.r@web.de>,
"Junio C Hamano" <gitster@pobox.com>,
"Kyle Lippincott" <spectral@google.com>,
"Phillip Wood" <phillip.wood@dunelm.org.uk>,
"Josh Steadmon" <steadmon@google.com>,
rsbecker@nexbridge.com,
"Edward Thomson" <ethomson@edwardthomson.com>
Subject: Re: [PATCH v5 0/9] Introduce clar testing framework
Date: Fri, 16 Aug 2024 14:37:34 +0100 [thread overview]
Message-ID: <b87700d2-0c9a-4d0c-9ee4-e6a91278d596@gmail.com> (raw)
In-Reply-To: <cover.1723791831.git.ps@pks.im>
Hi Patrick
On 16/08/2024 08:04, Patrick Steinhardt wrote:
> Hi,
>
> this is the fifth version of my patch series that introduces the clar
> testing framework for our unit tests.
Thanks for working on this, I'm broadly in favor of this change. I
like the way it keeps each test as a function and adds automatic test
registration with support for setup and teardown functions. I am keen
though to keep an emphasis on good diagnostic messages when tests
fail. Looking at the conversions in this series all of the test_msg()
lines that provide useful debugging context are removed. I'm not sure
using yaml to report errors rather than human readable messages is an
improvement either.
I wonder if we want to either improve the assertions offered by clar
or write our own. I find the names of the cl_assert_equal_?()
functions are a bit cumbersome. The aim of the check_* names was to
try and be both concise and descriptive. Adding our own check_* macros
on top of clar would also make it easier to port our existing tests.
Here are some thought having read through the assertion and error
reporting code:
- As I think you've pointed out elsewhere there are no equivalents
for check_int(a, <|<=|>|>=, b) so we're forced to use cl_assert()
and forego the better diagnostic messages that come from a
dedicated comparison macro. We should fix this as a priority.
- cl_assert_equal_i() casts its arguments to int whereas check_int()
and check_uint() are careful to avoid truncation and keep the
original signedness (if that's a word). I think that's unlikely to
be a problem with our current test but could trip us up in the
future.
- cl_assert_equal_s() prints each argument as-is. This means
that it passes NULL arguments through to snprintf() which is
undefined according to the C standard. Compare this to check_str()
that is NULL safe and is careful to escape control characters and
add delimiters to the beginning and end of the string to make it
obvious when a string contains leading or trailing whitespace.
- The cl_assert_equal_?() macros lack type safety for the arguments
being compared as they are wrappers around a variadic function.
That could be fixed by having each macros wrap a dedicated
function that wraps clar__fail().
- There is no equivalent of test_todo() to mark assertions that are
expected to fail. We're not using that yet in our tests but our
experience with the integration tests suggests that we are likely
to want this in the future.
- To me the "sandbox" feature is mis-named as it does not provide any
confinement. It is instead a useful mechanism for running a test in
a temporary directory created from a template.
- There are no checks for failing memory allocations - the return
value of calloc() and strdup() are used without checking for NULL.
- The use of longjmp is a bit of a double edged sword as it makes it
easy to leak resources on test failures.
Best Wishes
Phillip
> Changes compared to v4:
>
> - The whitespace fixes have been merged upstream, so I've updated the
> embedded copy of clar and dropped the subsequent patch that fixed
> them in our copy. The NonStop compatibility fixes have not yet been
> merged as the pull request needs some more work.
>
> - Both "clar-decls.h" and "clar.suite" are now part of GENERATED_H.
> This brings removal of these files via "make clean" for free.
>
> - The "sparse" target already depends on GENERATED_H, but in a broken
> way. I've fixed that in a new commit.
>
> - The "sparse" target no longer checks external sources, including the
> clar sources.
>
> - The "hdr-check" target now depends on GENERATED_H, as well. This
> avoids having to manually wire up dependencies on generated headers
> per file, which seems rather unmaintainable to me.
>
> With this, the "hdr-check" and "sparse" targets all work on my machine
> now.
>
> Thanks!
>
> Patrick
>
> Patrick Steinhardt (9):
> t: do not pass GIT_TEST_OPTS to unit tests with prove
> t: import the clar unit testing framework
> t/clar: fix compatibility with NonStop
> Makefile: fix sparse dependency on GENERATED_H
> Makefile: make hdr-check depend on generated headers
> Makefile: do not use sparse on third-party sources
> Makefile: wire up the clar unit testing framework
> t/unit-tests: convert strvec tests to use clar
> t/unit-tests: convert ctype tests to use clar
>
> .gitignore | 1 +
> Documentation/technical/unit-tests.txt | 2 +
> Makefile | 53 +-
> t/Makefile | 4 +-
> t/run-test.sh | 2 +-
> t/unit-tests/.gitignore | 2 +
> t/unit-tests/clar-generate.awk | 50 ++
> t/unit-tests/clar/.github/workflows/ci.yml | 23 +
> t/unit-tests/clar/COPYING | 15 +
> t/unit-tests/clar/README.md | 329 ++++++++
> t/unit-tests/clar/clar.c | 842 +++++++++++++++++++++
> t/unit-tests/clar/clar.h | 173 +++++
> t/unit-tests/clar/clar/fixtures.h | 50 ++
> t/unit-tests/clar/clar/fs.h | 522 +++++++++++++
> t/unit-tests/clar/clar/print.h | 211 ++++++
> t/unit-tests/clar/clar/sandbox.h | 159 ++++
> t/unit-tests/clar/clar/summary.h | 143 ++++
> t/unit-tests/clar/generate.py | 266 +++++++
> t/unit-tests/clar/test/.gitignore | 4 +
> t/unit-tests/clar/test/Makefile | 39 +
> t/unit-tests/clar/test/clar_test.h | 16 +
> t/unit-tests/clar/test/main.c | 40 +
> t/unit-tests/clar/test/main.c.sample | 27 +
> t/unit-tests/clar/test/resources/test/file | 1 +
> t/unit-tests/clar/test/sample.c | 84 ++
> t/unit-tests/{t-ctype.c => ctype.c} | 71 +-
> t/unit-tests/{t-strvec.c => strvec.c} | 119 ++-
> t/unit-tests/unit-test.c | 17 +
> t/unit-tests/unit-test.h | 3 +
> 29 files changed, 3166 insertions(+), 102 deletions(-)
> create mode 100644 t/unit-tests/clar-generate.awk
> create mode 100644 t/unit-tests/clar/.github/workflows/ci.yml
> create mode 100644 t/unit-tests/clar/COPYING
> create mode 100644 t/unit-tests/clar/README.md
> create mode 100644 t/unit-tests/clar/clar.c
> create mode 100644 t/unit-tests/clar/clar.h
> create mode 100644 t/unit-tests/clar/clar/fixtures.h
> create mode 100644 t/unit-tests/clar/clar/fs.h
> create mode 100644 t/unit-tests/clar/clar/print.h
> create mode 100644 t/unit-tests/clar/clar/sandbox.h
> create mode 100644 t/unit-tests/clar/clar/summary.h
> create mode 100755 t/unit-tests/clar/generate.py
> create mode 100644 t/unit-tests/clar/test/.gitignore
> create mode 100644 t/unit-tests/clar/test/Makefile
> create mode 100644 t/unit-tests/clar/test/clar_test.h
> create mode 100644 t/unit-tests/clar/test/main.c
> create mode 100644 t/unit-tests/clar/test/main.c.sample
> create mode 100644 t/unit-tests/clar/test/resources/test/file
> create mode 100644 t/unit-tests/clar/test/sample.c
> rename t/unit-tests/{t-ctype.c => ctype.c} (71%)
> rename t/unit-tests/{t-strvec.c => strvec.c} (54%)
> create mode 100644 t/unit-tests/unit-test.c
> create mode 100644 t/unit-tests/unit-test.h
>
> Range-diff against v4:
> 1: 086dd728a7 ! 1: 832dc0496f t: do not pass GIT_TEST_OPTS to unit tests with prove
> @@ Commit message
> environment variable. Like this, we can conditionally forward it to our
> test scripts, only.
>
> + Signed-off-by: Patrick Steinhardt <ps@pks.im>
> +
> ## t/Makefile ##
> @@ t/Makefile: failed:
> test -z "$$failed" || $(MAKE) $$failed
> 2: 5c22e0b3b9 ! 2: 3690607933 t: import the clar unit testing framework
> @@ Metadata
> ## Commit message ##
> t: import the clar unit testing framework
>
> - Import the clar unit testing framework at commit faa8419 (Merge pull
> - request #93 from clar-test/ethomson/fixtures, 2023-12-14). The framework
> + Import the clar unit testing framework at commit 1516124 (Merge pull
> + request #97 from pks-t/pks-whitespace-fixes, 2024-08-15). The framework
> will be wired up in subsequent commits.
>
> Signed-off-by: Patrick Steinhardt <ps@pks.im>
> @@ t/unit-tests/clar/clar/fs.h (new)
> + ERROR_PATH_NOT_FOUND == last_error)
> + return 0;
> +
> -+ Sleep(RM_RETRY_DELAY * retries * retries);
> ++ Sleep(RM_RETRY_DELAY * retries * retries);
> + }
> + while (retries++ <= RM_RETRY_COUNT);
> +
> @@ t/unit-tests/clar/clar/sandbox.h (new)
> + static const size_t var_count = 5;
> + static const char *env_vars[] = {
> + "CLAR_TMP", "TMPDIR", "TMP", "TEMP", "USERPROFILE"
> -+ };
> ++ };
> +
> -+ size_t i;
> ++ size_t i;
> +
> + for (i = 0; i < var_count; ++i) {
> + const char *env = getenv(env_vars[i]);
> @@ t/unit-tests/clar/clar/sandbox.h (new)
> +{
> + return _clar_path;
> +}
> -+
>
> ## t/unit-tests/clar/clar/summary.h (new) ##
> @@
> @@ t/unit-tests/clar/generate.py (new)
> + suite.disable(options.excluded)
> + if suite.write():
> + print("Written `clar.suite` (%d tests in %d suites)" % (suite.callback_count(), suite.suite_count()))
> -+
>
> ## t/unit-tests/clar/test/.gitignore (new) ##
> @@
> @@ t/unit-tests/clar/test/.gitignore (new)
> +.clarcache
> +clar_test
> +*.o
> -+
>
> ## t/unit-tests/clar/test/Makefile (new) ##
> @@
> 4: 75e097dfa4 = 3: db53673294 t/clar: fix compatibility with NonStop
> 3: e0f99874cc ! 4: b6199c88dd t/clar: fix whitespace errors
> @@ Metadata
> Author: Patrick Steinhardt <ps@pks.im>
>
> ## Commit message ##
> - t/clar: fix whitespace errors
> -
> - Fix whitespace errors in the clar that make git-apply(1) unhappy. This
> - has been cherry-picked from the upstream pull request at [1].
> -
> - [1]: https://github.com/clar-test/clar/pull/97
> + Makefile: fix sparse dependency on GENERATED_H
> +
> + The "check" Makefile target is essentially an alias around the "sparse"
> + target. The one difference though is that it will tell users to instead
> + run the "test" target in case they do not have sparse(1) installed, as
> + chances are high that they wanted to execute the test suite rather than
> + doing semantic checks.
> +
> + But even though the "check" target ultimately just ends up executing
> + `make sparse`, it still depends on our generated headers. This does not
> + make any sense though: they are irrelevant for the "test" target advice,
> + and if these headers are required for the "sparse" target they must be
> + declared as a dependency on the aliased target, not the alias.
> +
> + But even moving the dependency to the "sparse" target is wrong, as
> + concurrent builds may then end up generating the headers and running
> + sparse concurrently. Instead, we make them a dependency of the specific
> + objects. While that is overly broad, it does ensure correct ordering.
> + The alternative, specifying which file depends on what generated header
> + explicitly, feels rather unmaintainable.
>
> Signed-off-by: Patrick Steinhardt <ps@pks.im>
>
> - ## t/unit-tests/clar/clar/fs.h ##
> -@@ t/unit-tests/clar/clar/fs.h: fs_rm_wait(WCHAR *_wpath)
> - ERROR_PATH_NOT_FOUND == last_error)
> - return 0;
> -
> -- Sleep(RM_RETRY_DELAY * retries * retries);
> -+ Sleep(RM_RETRY_DELAY * retries * retries);
> - }
> - while (retries++ <= RM_RETRY_COUNT);
> + ## Makefile ##
> +@@ Makefile: check-sha1:: t/helper/test-tool$X
>
> -
> - ## t/unit-tests/clar/clar/sandbox.h ##
> -@@ t/unit-tests/clar/clar/sandbox.h: find_tmp_path(char *buffer, size_t length)
> - static const size_t var_count = 5;
> - static const char *env_vars[] = {
> - "CLAR_TMP", "TMPDIR", "TMP", "TEMP", "USERPROFILE"
> -- };
> -+ };
> + SP_OBJ = $(patsubst %.o,%.sp,$(OBJECTS))
>
> -- size_t i;
> -+ size_t i;
> +-$(SP_OBJ): %.sp: %.c %.o
> ++$(SP_OBJ): %.sp: %.c %.o $(GENERATED_H)
> + $(QUIET_SP)cgcc -no-compile $(ALL_CFLAGS) $(EXTRA_CPPFLAGS) \
> + -Wsparse-error \
> + $(SPARSE_FLAGS) $(SP_EXTRA_FLAGS) $< && \
> +@@ Makefile: style:
> + git clang-format --style file --diff --extensions c,h
>
> - for (i = 0; i < var_count; ++i) {
> - const char *env = getenv(env_vars[i]);
> -@@ t/unit-tests/clar/clar/sandbox.h: const char *clar_sandbox_path(void)
> - {
> - return _clar_path;
> - }
> --
> -
> - ## t/unit-tests/clar/generate.py ##
> -@@ t/unit-tests/clar/generate.py: def write(self):
> - suite.disable(options.excluded)
> - if suite.write():
> - print("Written `clar.suite` (%d tests in %d suites)" % (suite.callback_count(), suite.suite_count()))
> --
> -
> - ## t/unit-tests/clar/test/.gitignore ##
> -@@ t/unit-tests/clar/test/.gitignore: clar.suite
> - .clarcache
> - clar_test
> - *.o
> --
> + .PHONY: check
> +-check: $(GENERATED_H)
> ++check:
> + @if sparse; \
> + then \
> + echo >&2 "Use 'make sparse' instead"; \
> -: ---------- > 5: 06364b2b72 Makefile: make hdr-check depend on generated headers
> -: ---------- > 6: 88ea94ce16 Makefile: do not use sparse on third-party sources
> 5: 5b8a64ae79 ! 7: 05bcb5bef6 Makefile: wire up the clar unit testing framework
> @@ .gitignore
> /bin-wrappers/
>
> ## Makefile ##
> +@@ Makefile: REFTABLE_TEST_LIB = reftable/libreftable_test.a
> + GENERATED_H += command-list.h
> + GENERATED_H += config-list.h
> + GENERATED_H += hook-list.h
> ++GENERATED_H += $(UNIT_TEST_DIR)/clar-decls.h
> ++GENERATED_H += $(UNIT_TEST_DIR)/clar.suite
> +
> + .PHONY: generated-hdrs
> + generated-hdrs: $(GENERATED_H)
> @@ Makefile: THIRD_PARTY_SOURCES += sha1dc/%
> THIRD_PARTY_SOURCES += $(UNIT_TEST_DIR)/clar/%
> THIRD_PARTY_SOURCES += $(UNIT_TEST_DIR)/clar/clar/%
> @@ Makefile: endif
>
> bin-wrappers/%: wrap-for-bin.sh
> $(call mkdir_p_parent_template)
> -@@ Makefile: CHK_HDRS = $(filter-out $(EXCEPT_HDRS),$(LIB_H))
> - HCO = $(patsubst %.h,%.hco,$(CHK_HDRS))
> - HCC = $(HCO:hco=hcc)
> -
> -+$(UNIT_TEST_DIR)/unit-test.hcc: $(UNIT_TEST_DIR)/unit-test.h $(UNIT_TEST_DIR)/clar-decls.h
> - %.hcc: %.h
> - @echo '#include "git-compat-util.h"' >$@
> - @echo '#include "$<"' >>$@
> @@ Makefile: endif
>
> artifacts-tar:: $(ALL_COMMANDS_TO_INSTALL) $(SCRIPT_LIB) $(OTHER_PROGRAMS) \
> @@ Makefile: cocciclean:
>
> clean: profile-clean coverage-clean cocciclean
> $(RM) -r .build $(UNIT_TEST_BIN)
> -+ $(RM) GIT-TEST-SUITES $(UNIT_TEST_DIR)/clar.suite $(UNIT_TEST_DIR)/clar-decls.h
> ++ $(RM) GIT-TEST-SUITES
> $(RM) po/git.pot po/git-core.pot
> $(RM) git.res
> $(RM) $(OBJECTS)
> 6: bc4e23d666 = 8: 8f56b4d626 t/unit-tests: convert strvec tests to use clar
> 7: 0a7fe8775a = 9: ca09d19fd5 t/unit-tests: convert ctype tests to use clar
>
> base-commit: 406f326d271e0bacecdb00425422c5fa3f314930
next prev parent reply other threads:[~2024-08-16 13:37 UTC|newest]
Thread overview: 172+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-31 9:04 [RFC PATCH 0/3] Introduce clar testing framework Patrick Steinhardt
2024-07-31 9:04 ` [RFC PATCH 1/3] t: import the clar unit " Patrick Steinhardt
2024-07-31 18:27 ` Josh Steadmon
2024-07-31 19:36 ` Junio C Hamano
2024-08-01 9:32 ` Patrick Steinhardt
2024-07-31 20:04 ` rsbecker
2024-08-01 9:31 ` Patrick Steinhardt
2024-08-01 12:15 ` rsbecker
2024-08-01 12:54 ` rsbecker
2024-08-01 13:37 ` Patrick Steinhardt
2024-08-01 13:47 ` rsbecker
2024-08-01 13:50 ` Patrick Steinhardt
2024-08-01 13:53 ` rsbecker
2024-08-01 13:55 ` Patrick Steinhardt
2024-08-01 14:04 ` rsbecker
2024-08-01 14:43 ` Patrick Steinhardt
2024-08-01 16:31 ` rsbecker
2024-08-01 17:06 ` rsbecker
2024-08-01 17:43 ` [RFC PATCH 1/3] t: import the clar unit testing framework (better one) rsbecker
2024-08-01 18:12 ` René Scharfe
2024-08-01 18:33 ` rsbecker
2024-07-31 9:04 ` [RFC PATCH 2/3] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-07-31 16:48 ` René Scharfe
2024-08-01 9:32 ` Patrick Steinhardt
2024-07-31 17:01 ` Junio C Hamano
2024-07-31 21:39 ` Junio C Hamano
2024-08-01 9:32 ` Patrick Steinhardt
2024-07-31 9:04 ` [RFC PATCH 3/3] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-07-31 15:51 ` [RFC PATCH 0/3] Introduce clar testing framework Junio C Hamano
2024-07-31 15:56 ` rsbecker
2024-07-31 16:52 ` Junio C Hamano
2024-07-31 20:25 ` rsbecker
2024-07-31 20:37 ` rsbecker
2024-08-01 9:31 ` Patrick Steinhardt
2024-08-01 9:31 ` Patrick Steinhardt
2024-07-31 18:33 ` Josh Steadmon
2024-08-01 9:31 ` Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 0/7] " Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 1/7] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 2/7] t: import the clar unit testing framework Patrick Steinhardt
2024-08-06 22:18 ` Josh Steadmon
2024-08-07 5:52 ` Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 3/7] t/clar: fix whitespace errors Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 4/7] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 5/7] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-08-06 14:14 ` [RFC PATCH v2 6/7] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-08-06 23:05 ` Josh Steadmon
2024-08-07 5:52 ` Patrick Steinhardt
2024-08-06 14:15 ` [RFC PATCH v2 7/7] t/unit-tests: convert ctype " Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 0/7] Introduce clar testing framework Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 1/7] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 2/7] t: import the clar unit testing framework Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 3/7] t/clar: fix whitespace errors Patrick Steinhardt
2024-08-13 15:25 ` Junio C Hamano
2024-08-13 15:31 ` rsbecker
2024-08-13 18:43 ` Junio C Hamano
2024-08-13 19:14 ` rsbecker
2024-08-13 20:42 ` Junio C Hamano
2024-08-14 5:58 ` Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 4/7] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 5/7] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 6/7] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-08-08 5:38 ` [RFC PATCH v3 7/7] t/unit-tests: convert ctype " Patrick Steinhardt
2024-08-12 18:10 ` [RFC PATCH v3 0/7] Introduce clar testing framework Josh Steadmon
2024-08-12 18:13 ` rsbecker
2024-08-12 20:50 ` Junio C Hamano
2024-08-12 20:58 ` rsbecker
2024-08-12 22:13 ` Junio C Hamano
2024-08-13 7:23 ` Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 " Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 1/7] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 2/7] t: import the clar unit testing framework Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 3/7] t/clar: fix whitespace errors Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 4/7] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 5/7] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 6/7] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-08-15 9:47 ` [PATCH v4 7/7] t/unit-tests: convert ctype " Patrick Steinhardt
2024-08-15 16:21 ` [PATCH v4 0/7] Introduce clar testing framework Junio C Hamano
2024-08-16 5:10 ` Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 0/9] " Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 1/9] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 2/9] t: import the clar unit testing framework Patrick Steinhardt
2024-08-16 13:37 ` Phillip Wood
2024-08-23 12:16 ` Johannes Schindelin
2024-08-28 13:20 ` Phillip Wood
2024-08-19 21:21 ` Junio C Hamano
2024-08-19 21:50 ` rsbecker
2024-08-19 22:13 ` Junio C Hamano
2024-08-19 22:38 ` rsbecker
2024-08-20 12:59 ` Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 3/9] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 4/9] Makefile: fix sparse dependency on GENERATED_H Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 5/9] Makefile: make hdr-check depend on generated headers Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 6/9] Makefile: do not use sparse on third-party sources Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 7/9] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-08-16 7:04 ` [PATCH v5 8/9] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-08-16 13:38 ` Phillip Wood
2024-08-16 16:11 ` Junio C Hamano
2024-08-20 12:59 ` Patrick Steinhardt
2024-08-16 7:05 ` [PATCH v5 9/9] t/unit-tests: convert ctype " Patrick Steinhardt
2024-08-16 13:38 ` Phillip Wood
2024-08-20 12:59 ` Patrick Steinhardt
2024-08-18 6:39 ` Junio C Hamano
2024-08-16 13:37 ` Phillip Wood [this message]
2024-08-20 12:59 ` [PATCH v5 0/9] Introduce clar testing framework Patrick Steinhardt
2024-08-28 15:15 ` phillip.wood123
2024-08-20 14:02 ` [PATCH v6 00/13] " Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 01/13] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 02/13] t: import the clar unit testing framework Patrick Steinhardt
2024-08-28 13:16 ` Phillip Wood
2024-09-03 7:45 ` Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 03/13] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 04/13] clar: avoid compile error with mingw-w64 Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 05/13] clar(win32): avoid compile error due to unused `fs_copy()` Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 06/13] clar: stop including `shellapi.h` unnecessarily Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 07/13] Makefile: fix sparse dependency on GENERATED_H Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 08/13] Makefile: make hdr-check depend on generated headers Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 09/13] Makefile: do not use sparse on third-party sources Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 10/13] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 11/13] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-08-28 13:17 ` Phillip Wood
2024-09-03 7:45 ` Patrick Steinhardt
2024-09-03 9:48 ` phillip.wood123
2024-09-04 6:37 ` Patrick Steinhardt
2024-09-04 9:31 ` phillip.wood123
2024-08-20 14:02 ` [PATCH v6 12/13] t/unit-tests: convert ctype " Patrick Steinhardt
2024-08-28 13:18 ` Phillip Wood
2024-09-03 7:45 ` Patrick Steinhardt
2024-08-20 14:02 ` [PATCH v6 13/13] clar: add CMake support Patrick Steinhardt
2024-08-28 13:18 ` [PATCH v6 00/13] Introduce clar testing framework Phillip Wood
2024-08-28 14:03 ` Patrick Steinhardt
2024-08-28 14:58 ` phillip.wood123
2024-09-03 9:14 ` [PATCH v7 00/14] " Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 01/14] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 02/14] t: import the clar unit testing framework Patrick Steinhardt
2024-09-03 9:47 ` Eric Sunshine
2024-09-04 6:38 ` Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 03/14] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 04/14] clar: avoid compile error with mingw-w64 Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 05/14] clar(win32): avoid compile error due to unused `fs_copy()` Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 06/14] clar: stop including `shellapi.h` unnecessarily Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 07/14] Makefile: fix sparse dependency on GENERATED_H Patrick Steinhardt
2024-09-03 9:14 ` [PATCH v7 08/14] Makefile: make hdr-check depend on generated headers Patrick Steinhardt
2024-09-03 9:15 ` [PATCH v7 09/14] Makefile: do not use sparse on third-party sources Patrick Steinhardt
2024-09-03 9:15 ` [PATCH v7 10/14] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-09-03 9:15 ` [PATCH v7 11/14] t/unit-tests: implement test driver Patrick Steinhardt
2024-09-04 13:35 ` Phillip Wood
2024-09-04 14:12 ` Patrick Steinhardt
2024-09-04 14:35 ` phillip.wood123
2024-09-03 9:15 ` [PATCH v7 12/14] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-09-03 9:15 ` [PATCH v7 13/14] t/unit-tests: convert ctype " Patrick Steinhardt
2024-09-03 9:15 ` [PATCH v7 14/14] clar: add CMake support Patrick Steinhardt
2024-09-04 13:35 ` [PATCH v7 00/14] Introduce clar testing framework Phillip Wood
2024-09-04 14:12 ` Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 " Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 01/14] t: do not pass GIT_TEST_OPTS to unit tests with prove Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 02/14] t: import the clar unit testing framework Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 03/14] t/clar: fix compatibility with NonStop Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 04/14] clar: avoid compile error with mingw-w64 Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 05/14] clar(win32): avoid compile error due to unused `fs_copy()` Patrick Steinhardt
2024-09-04 14:16 ` [PATCH v8 06/14] clar: stop including `shellapi.h` unnecessarily Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 07/14] Makefile: fix sparse dependency on GENERATED_H Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 08/14] Makefile: make hdr-check depend on generated headers Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 09/14] Makefile: do not use sparse on third-party sources Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 10/14] Makefile: wire up the clar unit testing framework Patrick Steinhardt
2024-09-09 18:17 ` Junio C Hamano
2024-09-10 6:20 ` Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 11/14] t/unit-tests: implement test driver Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 12/14] t/unit-tests: convert strvec tests to use clar Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 13/14] t/unit-tests: convert ctype " Patrick Steinhardt
2024-09-04 14:17 ` [PATCH v8 14/14] clar: add CMake support Patrick Steinhardt
2024-09-04 14:32 ` [PATCH v8 00/14] Introduce clar testing framework phillip.wood123
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b87700d2-0c9a-4d0c-9ee4-e6a91278d596@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=ethomson@edwardthomson.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=l.s.r@web.de \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
--cc=rsbecker@nexbridge.com \
--cc=spectral@google.com \
--cc=steadmon@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).