mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
9 lines
388 B
Bash
9 lines
388 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Send in a regexp mathing the benchmarks you want to run, i.e. './benchSite.sh "frontmatter=YAML"'.
|
||
|
# Note the quotes, which will be needed for more complex expressions.
|
||
|
# The above will run all variations, but only for front matter YAML.
|
||
|
|
||
|
echo "Running with BenchmarkSiteBuilding/${1}"
|
||
|
|
||
|
go test -run="NONE" -bench="BenchmarkSiteBuilding/${1}" -test.benchmem=true ./hugolib
|