Show that --timeout doesn't work if the build produces log output

This commit is contained in:
Eelco Dolstra 2013-04-23 17:16:29 +02:00
parent 6955d41f2b
commit f9974f856e
2 changed files with 1 additions and 3 deletions

View File

@ -1,2 +1,2 @@
echo "\`timeout' builder entering an infinite loop"
while true ; do : ; done
while true ; do echo foo; sleep 1; done

View File

@ -3,6 +3,4 @@ with import ./config.nix;
mkDerivation {
name = "timeout";
builder = ./timeout.builder.sh;
PATH = "";
goodPath = path;
}