(t *testing.T)
| 2706 | } |
| 2707 | |
| 2708 | func TestExpr_crash(t *testing.T) { |
| 2709 | content, err := os.ReadFile("testdata/crash.txt") |
| 2710 | require.NoError(t, err) |
| 2711 | |
| 2712 | _, err = expr.Compile(string(content)) |
| 2713 | require.Error(t, err) |
| 2714 | } |
| 2715 | |
| 2716 | func TestExpr_crash_with_zero(t *testing.T) { |
| 2717 | code := "if\x00" |