mirror of https://github.com/tidwall/gjson.git
Fix backspace and form-feed for Go 1.22
This commit is contained in:
parent
711c6fe9ec
commit
bbf40bb0e4
|
@ -2578,6 +2578,9 @@ func TestJSONString(t *testing.T) {
|
||||||
testJSONString(t, s)
|
testJSONString(t, s)
|
||||||
testJSONString(t, "R\xfd\xfc\a!\x82eO\x16?_\x0f\x9ab\x1dr")
|
testJSONString(t, "R\xfd\xfc\a!\x82eO\x16?_\x0f\x9ab\x1dr")
|
||||||
testJSONString(t, "_\xb9\v\xad\xb3|X!\xb6\xd9U&\xa4\x1a\x95\x04")
|
testJSONString(t, "_\xb9\v\xad\xb3|X!\xb6\xd9U&\xa4\x1a\x95\x04")
|
||||||
|
data, _ := json.Marshal("\b\f")
|
||||||
|
if (string(data) == "\"\\b\\f\"") {
|
||||||
|
// Go version 1.22+ encodes "\b" and "\f" correctly.
|
||||||
testJSONString(t, "\b\f")
|
testJSONString(t, "\b\f")
|
||||||
rng := rand.New(rand.NewSource(time.Now().UnixNano()))
|
rng := rand.New(rand.NewSource(time.Now().UnixNano()))
|
||||||
start := time.Now()
|
start := time.Now()
|
||||||
|
@ -2589,6 +2592,7 @@ func TestJSONString(t *testing.T) {
|
||||||
testJSONString(t, string(buf[:]))
|
testJSONString(t, string(buf[:]))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestIndexAtSymbol(t *testing.T) {
|
func TestIndexAtSymbol(t *testing.T) {
|
||||||
json := `{
|
json := `{
|
||||||
|
|
Loading…
Reference in New Issue