Skip to content

Commit

Permalink
Implement Go track
Browse files Browse the repository at this point in the history
With incomplete benches: importing is not automated yet.

Signed-off-by: Paul Mabileau <paulmabileau@hotmail.fr>
  • Loading branch information
PaulDance committed Feb 11, 2021
1 parent 9f0e969 commit 5f4ccdb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tracks/go.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Runs all the available tests.
function _run_tests() {
go test -v -race
}

# Just runs any available benchmark, importing still needs to be added.
function _run_benches() {
go test -v --bench . --benchmem
}

0 comments on commit 5f4ccdb

Please sign in to comment.