From: Junio C Hamano Date: Wed, 12 Jun 2024 20:37:18 +0000 (-0700) Subject: Merge branch 'gt/decorate-unit-test' X-Git-Tag: v2.46.0-rc0~61 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a061a62e28003898cb2c19ee332147b55fe95d3;p=thirdparty%2Fgit.git Merge branch 'gt/decorate-unit-test' A test helper that essentially is unit tests on the "decorate" logic has been rewritten using the unit-tests framework. * gt/decorate-unit-test: t/: migrate helper/test-example-decorate to the unit testing framework --- 2a061a62e28003898cb2c19ee332147b55fe95d3 diff --cc Makefile index 46468b02b8,5c3d50ca1b..f25b2e80a1 --- a/Makefile +++ b/Makefile @@@ -1333,15 -1333,11 +1332,16 @@@ THIRD_PARTY_SOURCES += compat/regex/ THIRD_PARTY_SOURCES += sha1collisiondetection/% THIRD_PARTY_SOURCES += sha1dc/% +UNIT_TEST_PROGRAMS += t-ctype + UNIT_TEST_PROGRAMS += t-example-decorate +UNIT_TEST_PROGRAMS += t-hash UNIT_TEST_PROGRAMS += t-mem-pool -UNIT_TEST_PROGRAMS += t-strbuf -UNIT_TEST_PROGRAMS += t-ctype UNIT_TEST_PROGRAMS += t-prio-queue +UNIT_TEST_PROGRAMS += t-reftable-basics +UNIT_TEST_PROGRAMS += t-strbuf +UNIT_TEST_PROGRAMS += t-strcmp-offset +UNIT_TEST_PROGRAMS += t-strvec +UNIT_TEST_PROGRAMS += t-trailer UNIT_TEST_PROGS = $(patsubst %,$(UNIT_TEST_BIN)/%$X,$(UNIT_TEST_PROGRAMS)) UNIT_TEST_OBJS = $(patsubst %,$(UNIT_TEST_DIR)/%.o,$(UNIT_TEST_PROGRAMS)) UNIT_TEST_OBJS += $(UNIT_TEST_DIR)/test-lib.o