c2047754c3
Compiler changes: * Change map assignment to use mapassign and assign value directly. * Change string iteration to use decoderune, faster for ASCII strings. * Change makeslice to take int, and use makeslice64 for larger values. * Add new noverflow field to hmap struct used for maps. Unresolved problems, to be fixed later: * Commented out test in go/types/sizes_test.go that doesn't compile. * Commented out reflect.TestStructOf test for padding after zero-sized field. Reviewed-on: https://go-review.googlesource.com/35231 gotools/: Updates for Go 1.8rc1. * Makefile.am (go_cmd_go_files): Add bug.go. (s-zdefaultcc): Write defaultPkgConfig. * Makefile.in: Rebuild. From-SVN: r244456
68 lines
1.5 KiB
Go
68 lines
1.5 KiB
Go
package profile
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestPackedEncoding(t *testing.T) {
|
|
|
|
type testcase struct {
|
|
uint64s []uint64
|
|
int64s []int64
|
|
encoded []byte
|
|
}
|
|
for i, tc := range []testcase{
|
|
{
|
|
[]uint64{0, 1, 10, 100, 1000, 10000},
|
|
[]int64{1000, 0, 1000},
|
|
[]byte{10, 8, 0, 1, 10, 100, 232, 7, 144, 78, 18, 5, 232, 7, 0, 232, 7},
|
|
},
|
|
{
|
|
[]uint64{10000},
|
|
nil,
|
|
[]byte{8, 144, 78},
|
|
},
|
|
{
|
|
nil,
|
|
[]int64{-10000},
|
|
[]byte{16, 240, 177, 255, 255, 255, 255, 255, 255, 255, 1},
|
|
},
|
|
} {
|
|
source := &packedInts{tc.uint64s, tc.int64s}
|
|
if got, want := marshal(source), tc.encoded; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("failed encode %d, got %v, want %v", i, got, want)
|
|
}
|
|
|
|
dest := new(packedInts)
|
|
if err := unmarshal(tc.encoded, dest); err != nil {
|
|
t.Errorf("failed decode %d: %v", i, err)
|
|
continue
|
|
}
|
|
if got, want := dest.uint64s, tc.uint64s; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("failed decode uint64s %d, got %v, want %v", i, got, want)
|
|
}
|
|
if got, want := dest.int64s, tc.int64s; !reflect.DeepEqual(got, want) {
|
|
t.Errorf("failed decode int64s %d, got %v, want %v", i, got, want)
|
|
}
|
|
}
|
|
}
|
|
|
|
type packedInts struct {
|
|
uint64s []uint64
|
|
int64s []int64
|
|
}
|
|
|
|
func (u *packedInts) decoder() []decoder {
|
|
return []decoder{
|
|
nil,
|
|
func(b *buffer, m message) error { return decodeUint64s(b, &m.(*packedInts).uint64s) },
|
|
func(b *buffer, m message) error { return decodeInt64s(b, &m.(*packedInts).int64s) },
|
|
}
|
|
}
|
|
|
|
func (u *packedInts) encode(b *buffer) {
|
|
encodeUint64s(b, 1, u.uint64s)
|
|
encodeInt64s(b, 2, u.int64s)
|
|
}
|