2021-05-29 08:47:18 +03:00
|
|
|
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{})
|
2022-01-03 06:33:51 +03:00
|
|
|
if size != 120 {
|
2021-12-27 11:50:55 +03:00
|
|
|
t.Fatalf("unexpected opcode size: expected 112bytes but got %dbytes", size)
|
2021-05-29 08:47:18 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|