diff options
author | EuAndreh <eu@euandre.org> | 2024-10-02 13:43:47 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-02 13:43:47 -0300 |
commit | e6561e006273edc64baf6b3af30e26a3817214d2 (patch) | |
tree | 940042d3d791672caccc43b1056d8bc4078bdacc /mkdeps.sh | |
parent | Makefile: Add fuzz target setup (diff) | |
download | golite-e6561e006273edc64baf6b3af30e26a3817214d2.tar.gz golite-e6561e006273edc64baf6b3af30e26a3817214d2.tar.xz |
Makefile: Setup benchmarking skeleton
Diffstat (limited to 'mkdeps.sh')
-rwxr-xr-x | mkdeps.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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/' |