From e6561e006273edc64baf6b3af30e26a3817214d2 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 2 Oct 2024 13:43:47 -0300 Subject: Makefile: Setup benchmarking skeleton --- mkdeps.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'mkdeps.sh') diff --git a/mkdeps.sh b/mkdeps.sh index 8ccfc69..1ff0acb 100755 --- a/mkdeps.sh +++ b/mkdeps.sh @@ -4,14 +4,14 @@ set -eu export LANG=POSIX.UTF-8 -find tests/functional/*.go | varlist 'functional-tests.go' find tests/functional/*.go -not -name extension.go | varlist 'functional-tests-butone.go' - -find tests/fuzz/*.go | varlist 'fuzz-targets.go' +find tests/functional/*.go | varlist 'functional-tests.go' +find tests/fuzz/*.go | varlist 'fuzz-targets.go' +find tests/benchmarks/*.go | varlist 'benchmarks.go' tfiles() { - find tests/functional/*.go tests/fuzz/*.go | sort + find tests/functional/*.go tests/fuzz/*.go tests/benchmarks/*.go | sort } tfiles | sed 's/^\(.*\)\.go$/\1.a:\t\1.go/' -- cgit v1.2.3