(t *testing.T)
| 18 | ) |
| 19 | |
| 20 | func skipIfNoParseCache(t *testing.T) { |
| 21 | if bits.UintSize == 32 { |
| 22 | t.Skip("the parse cache is not supported on 32-bit systems") |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func TestParseCache(t *testing.T) { |
| 27 | skipIfNoParseCache(t) |
no test coverage detected
searching dependent graphs…