tags 918316 + patch thanks The patch below works for me:
--- a/debian/rules +++ b/debian/rules @@ -18,5 +18,5 @@ override_dh_auto_test: ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) # -NOCACHE_NR_FADVISE=2 dh_auto_test -v ## #916415 - timeout 11 ./nocache apt show coreutils 1>>/dev/null + timeout 60 ./nocache apt show coreutils 1>>/dev/null endif Note: I don't quite understand the purpose of the timeout. Is it really useful/required to set a timeout at all? Normally sbuild (the autobuilder program used by the build daemons) has already a built-in timeout mechanism which prevents the autobuilder to be stuck forever, and by looking at build logs from reproducible builds, I believe pbuilder has also a timeout by default. Thanks.