(b *testing.B)
| 116 | } |
| 117 | |
| 118 | func BenchmarkRunAdd(b *testing.B) { |
| 119 | benchVM(b, "add", simpleAdd, []string{"12", "34"}, "46", nil) |
| 120 | } |
| 121 | |
| 122 | func BenchmarkRunIterativeFibonacci(b *testing.B) { |
| 123 | benchVM(b, "fibonacci", fiboIter, []string{"25"}, "121393", nil) |