Skip to content

Commit 0df903d

Browse files
dschogitster
authored andcommitted
unit-tests: do not mistake .pdb files for being executable
When building the unit tests via CMake, the `.pdb` files are built. Those are, essentially, files containing the debug information separately from the executables. Let's not confuse them with the executables we actually want to run. Signed-off-by: Johannes Schindelin <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent a15d446 commit 0df903d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TPERF = $(sort $(wildcard perf/p[0-9][0-9][0-9][0-9]-*.sh))
4242
TINTEROP = $(sort $(wildcard interop/i[0-9][0-9][0-9][0-9]-*.sh))
4343
CHAINLINTTESTS = $(sort $(patsubst chainlint/%.test,%,$(wildcard chainlint/*.test)))
4444
CHAINLINT = '$(PERL_PATH_SQ)' chainlint.pl
45-
UNIT_TESTS = $(sort $(filter-out unit-tests/bin/t-basic%,$(wildcard unit-tests/bin/t-*)))
45+
UNIT_TESTS = $(sort $(filter-out %.pdb unit-tests/bin/t-basic%,$(wildcard unit-tests/bin/t-*)))
4646

4747
# `test-chainlint` (which is a dependency of `test-lint`, `test` and `prove`)
4848
# checks all tests in all scripts via a single invocation, so tell individual

0 commit comments

Comments
 (0)