aboutsummaryrefslogtreecommitdiffstats
path: root/vm/proxyapp/proxyappclient_test.go
Commit message (Collapse)AuthorAgeFilesLines
* all: remove unused nolint directivesDmitry Vyukov2026-01-021-10/+2
|
* vm: add context to Pool.Create()Aleksandr Nogikh2025-10-011-5/+5
| | | | | | | | | | Enable external abortion of the instance creation process. This is especially useful for the qemu case where we retry the creation/boot up to 1000 times, which can take significant time (e.g. it timeouts syz-cluster pods on unstable kernels). The context can be further propagated to WaitForSSH, but that requires another quite significant vm/ refactoring.
* vm: func Run accepts contextTaras Madan2025-05-191-23/+15
| | | | It allows to use context as a single termination signal source.
* all: tools/syz-env make generate resultTaras Madan2023-02-241-3/+5
|
* vm/proxyapp: rpc over tcpTaras Madan2022-12-011-1/+4
|
* vm/proxyapp: logging over rpcTaras Madan2022-10-241-14/+40
|
* vm: add the proxyapp support (#3269)Taras Madan2022-09-261-0/+503
* vm: add pool.Close() support * vm: add proxyapp client implementation * vm/proxyapp: autogenerate mocks * vm/proxyapp: add proxyapp tests * pkg/mgrconfig: add proxyapp type tests