Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Commit

Permalink
Fix 'make bench'
Browse files Browse the repository at this point in the history
  • Loading branch information
djaglowski committed May 28, 2021
1 parent 6f4feb5 commit 67947c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ test-only:

.PHONY: bench
bench:
$(MAKE) for-all CMD="go test -run=NONE -bench '.*' ./... -benchmem"
go test -benchmem -run=^$$ -bench ^* ./...

.PHONY: clean
clean:
Expand Down
4 changes: 2 additions & 2 deletions operator/builtin/input/file/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func BenchmarkFileInput(b *testing.B) {
},
},
{
name: "FingerprintLarge",
name: "FngrPrntLarge",
paths: []string{
"file0.log",
},
Expand All @@ -123,7 +123,7 @@ func BenchmarkFileInput(b *testing.B) {
},
},
{
name: "FingerprintSmall",
name: "FngrPrntSmall",
paths: []string{
"file0.log",
},
Expand Down

0 comments on commit 67947c9

Please sign in to comment.