We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e99e8f commit cfec788Copy full SHA for cfec788
Makefile
@@ -56,6 +56,11 @@ test: .govet .golint .gitvalidation
56
.gitvalidation:
57
git-validation -q -run DCO,short-subject -v -range $(EPOCH_TEST_COMMIT)..HEAD
58
59
+# `go get https://github.com/pquerna/ffjson`
60
+ffjson:
61
+ cd specs-go/ && ffjson config.go
62
+ cd specs-go/ && ffjson state.go
63
+
64
clean:
65
rm -rf output/ *~
66
specs-go/serialize_test.go
@@ -130,7 +130,7 @@ var spec = &Spec{
130
},
131
}
132
133
-func BenchmarkMarsalSpec(b *testing.B) {
+func BenchmarkMarshalSpec(b *testing.B) {
134
for i := 0; i < b.N; i++ {
135
_, err := ffjson.Marshal(spec)
136
if err != nil {
0 commit comments