blob: 07b00a046f59fe116988842cccaff7ab3a891fd4 [file] [log] [blame]
Fumitoshi Ukaicc8d0cd2015-06-19 10:17:48 +09001// Copyright 2015 Google Inc. All rights reserved
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package main
16
17import (
18 "bytes"
19 "testing"
20)
21
22func BenchmarkFuncStrip(b *testing.B) {
23 strip := &funcStrip{
24 fclosure: fclosure{
25 args: []Value{
26 literal("(strip"),
27 literal("a b c "),
28 },
29 },
30 }
31 ev := newEvaluator(make(map[string]Var))
32 var buf bytes.Buffer
Fumitoshi Ukaia44b7662015-06-19 11:07:07 +090033 b.ReportAllocs()
34 b.ResetTimer()
Fumitoshi Ukaicc8d0cd2015-06-19 10:17:48 +090035 for i := 0; i < b.N; i++ {
36 buf.Reset()
37 strip.Eval(&buf, ev)
38 }
39}