1

move golang tests to its own directory

this prepares for more test binaries.
This commit is contained in:
Motiejus Jakštys
2022-02-03 14:58:05 +02:00
parent 5631c7e2b6
commit ebbf499208
5 changed files with 18 additions and 18 deletions

View File

@@ -21,9 +21,9 @@ _test() {
>&2 echo
>&2 echo "Testing $name and looking for '$glob':"
>&2 echo
>&2 echo " bazel build $* //test:test"
>&2 echo " bazel build $* //test/go:go"
>&2 echo
if _build_and_file "$@" //test:test | grep -q "$glob"; then
if _build_and_file "$@" //test/go:go | grep -q "$glob"; then
>&2 echo "OK $name"
return 0
else