about summary refs log tree commit diff
path: root/third_party/nix/tests/timeout.nix
blob: d0e949e31498cd6eea34d97209c52ab50d038f34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
with import ./config.nix;

{

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

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

  closeLog = mkDerivation {
    name = "silent";
    buildCommand = ''
      touch $out
      exec > /dev/null 2>&1
      sleep 1000000000
    '';
  };

}