about summary refs log tree commit diff
path: root/tests/timeout.nix
blob: 1f3f23f16a985dab2d91decec7e8abddc4af591d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
with import ./config.nix;

{

  infiniteLoop = mkDerivation {
    name = "timeout";
    buildCommand = ''
      echo "‘timeout’ builder entering an infinite loop"
      while true ; do echo -n .; done
    '';
  };

  silent = mkDerivation {
    name = "silent";
    buildCommand = ''
      sleep 60
    '';
  };

}