about summary refs log blame commit diff
path: root/third_party/nix/tests/timeout.nix
blob: d0e949e31498cd6eea34d97209c52ab50d038f34 (plain) (tree)
1
2
3
4
5
6
7
8
9

                         




                               
                
                                                        






                                     
                



              


                           
                




                           
 
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
    '';
  };

}