Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/debug-ing/benchmark-test-go
sample benchmark test in golang
https://github.com/debug-ing/benchmark-test-go
Last synced: 7 days ago
JSON representation
sample benchmark test in golang
- Host: GitHub
- URL: https://github.com/debug-ing/benchmark-test-go
- Owner: debug-ing
- Created: 2025-01-06T12:05:54.000Z (23 days ago)
- Default Branch: master
- Last Pushed: 2025-01-06T12:10:58.000Z (23 days ago)
- Last Synced: 2025-01-06T13:24:22.905Z (22 days ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Benchmark Testing in go
A simple code and ci for benchmark test in golang
## Run
without benchmem
```bash
go test -bench=.
```with benchmem
```bash
go test -bench=. -benchmem
```