2017-05-31 03:35:02 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-07-15 17:18:38 -04:00
|
|
|
# allow user to override go executable by running as GOEXE=xxx make ...
|
|
|
|
GOEXE="${GOEXE-go}"
|
|
|
|
|
2020-12-16 06:11:32 -05:00
|
|
|
# Send in a regexp matching the benchmarks you want to run, i.e. './benchSite.sh "YAML"'.
|
2017-05-31 03:35:02 -04:00
|
|
|
# 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}"
|
|
|
|
|
2018-01-13 18:49:01 -05:00
|
|
|
"${GOEXE}" test -run="NONE" -bench="BenchmarkSiteBuilding/${1}" -test.benchmem=true ./hugolib -memprofile mem.prof -count 3 -cpuprofile cpu.prof
|