-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
27 lines (23 loc) · 868 Bytes
/
Copy path.gitignore
File metadata and controls
27 lines (23 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
*.test
test-bin/
# Scratch clone target of the pineapple repo (benchmarks/pineapple/.pineapple/);
# also a root-level backstop against accidental inclusion
.pineapple/
luac.out
.llmdoc-tmp/
# Local pre-push hook rebase-check artifact (self-wrapper); never tracked.
.rebasechk
# Python bytecode cache from scripts/ tooling.
__pycache__/
*.pyc
fuzz-forensics/
# Scratch probe / reproduction test files created while debugging (e.g. a
# repro copied from /tmp into the repo ROOT to run under the build tags).
# Anchored with a leading slash so they only match at the repo root: an
# unanchored pattern matches by basename at any depth and would swallow
# real tests like test/difftest/probes_test.go. Real tests use semantic
# names (wangshu_test.go, table_test.go, issueNNN_*_test.go, fuzz_*_test.go).
/probe*_test.go
/repro*_test.go
/scratch*_test.go
/tmp*_test.go