about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/timeout.builder.sh2
-rw-r--r--tests/timeout.nix2
2 files changed, 1 insertions, 3 deletions
diff --git a/tests/timeout.builder.sh b/tests/timeout.builder.sh
index 3e6e1fc0429a..5a7e08861002 100644
--- a/tests/timeout.builder.sh
+++ b/tests/timeout.builder.sh
@@ -1,2 +1,2 @@
 echo "\`timeout' builder entering an infinite loop"
-while true ; do : ; done
+while true ; do echo foo; sleep 1; done
diff --git a/tests/timeout.nix b/tests/timeout.nix
index dec258801e3f..b41368bb38e2 100644
--- a/tests/timeout.nix
+++ b/tests/timeout.nix
@@ -3,6 +3,4 @@ with import ./config.nix;
 mkDerivation {
   name = "timeout";
   builder = ./timeout.builder.sh;
-  PATH = "";
-  goodPath = path;
 }