aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/syz-db-export/README.md (renamed from tools/syz-reprolist/README.md)12
-rw-r--r--tools/syz-db-export/reprolist.go (renamed from tools/syz-reprolist/reprolist.go)2
2 files changed, 7 insertions, 7 deletions
diff --git a/tools/syz-reprolist/README.md b/tools/syz-db-export/README.md
index ecaa09d2c..47b3248c9 100644
--- a/tools/syz-reprolist/README.md
+++ b/tools/syz-db-export/README.md
@@ -1,18 +1,18 @@
# Syzbot DB export
-Every week syzbot runs syz-reprolist to export its databases:
+Every week syzbot runs syz-db-export to export its databases:
1. [Upstream Linux](https://syzkaller.appspot.com/upstream)
db is [here](https://storage.googleapis.com/artifacts.syzkaller.appspot.com/shared-files/repro-export/upstream.tar.gz).
2. Contact us if you want see others.
## Export structure
DB currently includes:
-1. First C-Reproducer for every bug.
+1. Bugs descriptions.
+2. First C-Reproducer for every bug.
It doesn't include:
1. Second+ C-Reproducers for every bug.
2. Syz-Reproducers.
-3. Bugs description itself.
-4. Any reproducer related metadata (like triggering requirements).
+3. Any reproducer related metadata (like triggering requirements).
## How to export more data
@@ -20,6 +20,6 @@ The best way to see more data exported is to modify the tool and send us PR with
To reproduce locally what syzbot is doing for upstream Linux:
```golang
-go run ./tools/syz-reprolist/... -namespace upstream
+go run ./tools/syz-db-export/... -namespace upstream
```
-Extending tools/syz-reprolist you can teach syzbot to export more.
+Extending tools/syz-db-export you can teach syzbot to export more.
diff --git a/tools/syz-reprolist/reprolist.go b/tools/syz-db-export/reprolist.go
index ca90536ba..24a548423 100644
--- a/tools/syz-reprolist/reprolist.go
+++ b/tools/syz-db-export/reprolist.go
@@ -22,7 +22,7 @@ var (
flagOutputDir = flag.String("output", "export", "output dir")
flagNamespace = flag.String("namespace", "upstream", "target namespace")
flagToken = flag.String("token", "", "gcp bearer token to disable throttling (contact syzbot first)\n"+
- "usage example: ./tools/syz-bot-export -namespace upstream -token $(gcloud auth print-access-token)")
+ "usage example: ./tools/syz-db-export -namespace upstream -token $(gcloud auth print-access-token)")
flagParallel = flag.Int("j", 2, "number of parallel threads")
flagVerbose = flag.Bool("v", false, "verbose output")
)