aboutsummaryrefslogtreecommitdiff
path: root/mkdeps.sh
diff options
context:
space:
mode:
Diffstat (limited to 'mkdeps.sh')
-rwxr-xr-xmkdeps.sh8
1 files changed, 4 insertions, 4 deletions
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/'