mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-07 23:07:14 +02:00
❯ make benchmark FILTER=Builtin_manifestJsonEx go build ./cmd/jsonnet ./benchmark.sh Builtin_manifestJsonEx Running Before Test... (10s) Running After Test... (10s) benchmark old ns/op new ns/op delta Benchmark_Builtin_manifestJsonEx-16 22656394 7502016 -66.89%
58 lines
1.1 KiB
Go
58 lines
1.1 KiB
Go
package jsonnet
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
"os/exec"
|
|
"testing"
|
|
)
|
|
|
|
var (
|
|
jsonnetPath = flag.String("jsonnetPath", "./jsonnet", "Path to jsonnet binary")
|
|
outputPassthru = flag.Bool("outputPassthru", false, "Pass stdout/err from jsonnet")
|
|
)
|
|
|
|
func RunBenchmark(b *testing.B, name string) {
|
|
for n := 0; n < b.N; n++ {
|
|
cmd := exec.Command(*jsonnetPath, fmt.Sprintf("./builtin-benchmarks/%s.jsonnet", name))
|
|
if *outputPassthru {
|
|
cmd.Stdout = os.Stdout
|
|
cmd.Stderr = os.Stderr
|
|
}
|
|
|
|
err := cmd.Run()
|
|
if err != nil {
|
|
b.Fail()
|
|
}
|
|
}
|
|
}
|
|
|
|
func Benchmark_Builtin_substr(b *testing.B) {
|
|
RunBenchmark(b, "substr")
|
|
}
|
|
|
|
func Benchmark_Builtin_reverse(b *testing.B) {
|
|
RunBenchmark(b, "reverse")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64Decode(b *testing.B) {
|
|
RunBenchmark(b, "base64Decode")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64DecodeBytes(b *testing.B) {
|
|
RunBenchmark(b, "base64DecodeBytes")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64(b *testing.B) {
|
|
RunBenchmark(b, "base64")
|
|
}
|
|
|
|
func Benchmark_Builtin_base64_byte_array(b *testing.B) {
|
|
RunBenchmark(b, "base64_byte_array")
|
|
}
|
|
|
|
func Benchmark_Builtin_manifestJsonEx(b *testing.B) {
|
|
RunBenchmark(b, "manifestJsonEx")
|
|
}
|