blob: ceb57af728eac0bb9c2eddc515c8cd675574cd6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
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/functional/*.go | sed 's/^\(.*\)\.go$/\1.a:\t\1.go/'
find tests/functional/*.go | sed 's/^\(.*\)\.go$/\1.bin:\t\1.a/'
find tests/functional/*.go | sed 's/^\(.*\)\.go$/\1.bin-check:\t\1.bin/'
|