Show that --timeout doesn't work if the build produces log output
This commit is contained in:
parent
6955d41f2b
commit
f9974f856e
2 changed files with 1 additions and 3 deletions
|
@ -1,2 +1,2 @@
|
||||||
echo "\`timeout' builder entering an infinite loop"
|
echo "\`timeout' builder entering an infinite loop"
|
||||||
while true ; do : ; done
|
while true ; do echo foo; sleep 1; done
|
||||||
|
|
|
@ -3,6 +3,4 @@ with import ./config.nix;
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
name = "timeout";
|
name = "timeout";
|
||||||
builder = ./timeout.builder.sh;
|
builder = ./timeout.builder.sh;
|
||||||
PATH = "";
|
|
||||||
goodPath = path;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue