about summary refs log blame commit diff
path: root/tests/timeout.nix
blob: 1f3f23f16a985dab2d91decec7e8abddc4af591d (plain) (tree)
1
2

                         
















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

}