| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | all: use any instead of interface{} | Dmitry Vyukov | 2025-12-22 | 1 | -8/+8 |
| | | | | | Any is the preferred over interface{} now in Go. | ||||
| * | tools/syz-testbed: don't parse configs | Aleksandr Nogikh | 2022-02-25 | 1 | -2/+47 |
| | | | | | | | | | | | It's not practical to parse configs from tools/syz-testbed because it limits the tool to using only those configuration options, which are supported by the syzkaller version at the moment of tools/syz-testbed compilation. Operate with manager configs as if they were just some JSON objects. Introduce a PatchJSON method to update their fields in a convenient way. | ||||
| * | tools/syz-testbed: support per-checkout syz-manager configs | Aleksandr Nogikh | 2021-11-19 | 1 | -0/+49 |
| Let the user of the tool specify individual syz-manager configs for checkouts. A base config is specified as previously and then individual parts of jsons are applied to that base config, e.g. <...> "checkouts": [ { "name": "first", "repo": "https://github.com/google/syzkaller.git", }, { "name": "second", "repo": "https://github.com/google/syzkaller.git", "manager_config": { "kernel_obj": "/tmp/linux-stable2" } } ], "manager_config": { "target": "linux/amd64", "kernel_obj": "/tmp/linux-stable", <...> } <...> | |||||
