LEFT | RIGHT |
1 # Copyright 2009 The Go Authors. All rights reserved. | 1 # Copyright 2009 The Go Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style | 2 # Use of this source code is governed by a BSD-style |
3 # license that can be found in the LICENSE file. | 3 # license that can be found in the LICENSE file. |
4 | 4 |
5 include ../../../Make.$(GOARCH) | 5 include ../../../Make.$(GOARCH) |
6 | 6 |
7 TARG=container/vector | 7 TARG=container/vector |
8 GOFILES=\ | 8 GOFILES=\ |
9 defs.go\ | 9 defs.go\ |
10 intvector.go\ | 10 intvector.go\ |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | gofmt -r='TestInsertDeleteClearExp -> TestStrInsertDeleteClearExp'\ | 59 | gofmt -r='TestInsertDeleteClearExp -> TestStrInsertDeleteClearExp'\ |
60 | gofmt -r='verify_sliceExp -> verify_sliceStrExp'\ | 60 | gofmt -r='verify_sliceExp -> verify_sliceStrExp'\ |
61 | gofmt -r='verify_patternExp -> verify_patternStrExp'\ | 61 | gofmt -r='verify_patternExp -> verify_patternStrExp'\ |
62 | gofmt -r='make_vectorExp -> make_vectorStrExp'\ | 62 | gofmt -r='make_vectorExp -> make_vectorStrExp'\ |
63 | gofmt -r='TestInsertVectorExp -> TestStrInsertVectorExp'\ | 63 | gofmt -r='TestInsertVectorExp -> TestStrInsertVectorExp'\ |
64 | gofmt -r='TestDoExp -> TestStrDoExp'\ | 64 | gofmt -r='TestDoExp -> TestStrDoExp'\ |
65 | gofmt -r='TestIterExp -> TestStrIterExp'\ | 65 | gofmt -r='TestIterExp -> TestStrIterExp'\ |
66 | gofmt -r='TestVectorData -> TestStrVectorData'\ | 66 | gofmt -r='TestVectorData -> TestStrVectorData'\ |
67 > stringvector_test.go | 67 > stringvector_test.go |
68 | 68 |
| 69 bench: |
| 70 gotest -v -match Nums -benchmarks Nums |
| 71 |
69 include ../../../Make.pkg | 72 include ../../../Make.pkg |
LEFT | RIGHT |