https://github.com/debug-ing/benchmark-test-go
sample benchmark test in golang
https://github.com/debug-ing/benchmark-test-go
Last synced: 4 months 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 (11 months ago)
- Default Branch: master
- Last Pushed: 2025-01-06T12:10:58.000Z (11 months ago)
- Last Synced: 2025-07-11T06:43:00.662Z (5 months 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
```