diff options
-rw-r--r-- | Makefile | 5 | ||||
-rw-r--r-- | tests/wscat.go | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -109,6 +109,11 @@ check: check-unit check-integration +bench: tests/main.bin + $(EXEC)tests/main.bin -test.bench '.*' + + + ## Remove *all* derived artifacts produced during the build. ## A dedicated test asserts that this is always true. clean: diff --git a/tests/wscat.go b/tests/wscat.go index 17ee9e2..146576d 100644 --- a/tests/wscat.go +++ b/tests/wscat.go @@ -1790,7 +1790,6 @@ func MainTest() { { "TestParseExtensions", TestParseExtensions }, } - // FIXME: run benchmarks benchmarks := []testing.InternalBenchmark { { "BenchmarkWriteNoCompression", BenchmarkWriteNoCompression }, { "BenchmarkWriteWithCompression", BenchmarkWriteWithCompression }, |