bytedance / sonic

A blazingly fast JSON serializing & deserializing library
Apache License 2.0
6.54k stars 322 forks source link

test: enhance data race detection #651

Closed liuq19 closed 2 weeks ago

liuq19 commented 3 weeks ago

Enhance the data race detection when using Sonic JIT.

Problem: when running JIT codes, it will not generate race read/write even though enabling -race, and it will cause some data race cannot be detected.

Solution: We use encoding/json logic at first to make data race detection always work.