txscript: Add benchmark for GetSigOpCount.
This commit is contained in:
parent
f1ab6cc7cb
commit
c7218b2622
1 changed files with 15 additions and 0 deletions
|
@ -341,3 +341,18 @@ func BenchmarkIsUnspendable(b *testing.B) {
|
|||
_ = IsUnspendable(script)
|
||||
}
|
||||
}
|
||||
|
||||
// BenchmarkGetSigOpCount benchmarks how long it takes to count the signature
|
||||
// operations of a very large script.
|
||||
func BenchmarkGetSigOpCount(b *testing.B) {
|
||||
script, err := genComplexScript()
|
||||
if err != nil {
|
||||
b.Fatalf("failed to create benchmark script: %v", err)
|
||||
}
|
||||
|
||||
b.ResetTimer()
|
||||
b.ReportAllocs()
|
||||
for i := 0; i < b.N; i++ {
|
||||
_ = GetSigOpCount(script)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue