From cbd0445ec3b0b184db66966d8a47e6b37d13692e Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 25 Nov 2020 09:17:50 +0100 Subject: all: make timeouts configurable Add sys/targets.Timeouts struct that parametrizes timeouts throughout the system. The struct allows to control syscall/program/no output timeouts for OS/arch/VM/etc. See comment on the struct for more details. --- pkg/csource/csource_test.go | 1 + 1 file changed, 1 insertion(+) (limited to 'pkg/csource/csource_test.go') diff --git a/pkg/csource/csource_test.go b/pkg/csource/csource_test.go index f6d04b35c..951f9f09a 100644 --- a/pkg/csource/csource_test.go +++ b/pkg/csource/csource_test.go @@ -53,6 +53,7 @@ var executorOpts = Options{ Collide: true, Repeat: true, Procs: 2, + Slowdown: 1, Sandbox: "none", Repro: true, UseTmpDir: true, -- cgit mrf-deployment