mirror of https://github.com/goccy/go-json.git
19 lines
347 B
Go
19 lines
347 B
Go
|
package json
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"unsafe"
|
||
|
|
||
|
"github.com/goccy/go-json/internal/encoder"
|
||
|
)
|
||
|
|
||
|
func TestOpcodeSize(t *testing.T) {
|
||
|
const uintptrSize = 4 << (^uintptr(0) >> 63)
|
||
|
if uintptrSize == 8 {
|
||
|
size := unsafe.Sizeof(encoder.Opcode{})
|
||
|
if size != 128 {
|
||
|
t.Fatalf("unexpected opcode size: expected 128bytes but got %dbytes", size)
|
||
|
}
|
||
|
}
|
||
|
}
|