ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / ph / phoronix-test-suite / tests.nix
blob0a0970123eced15b54e1b02d2687697a0653d6bc
1 { runCommand, phoronix-test-suite }:
3 let
4   inherit (phoronix-test-suite) pname version;
5 in
7 runCommand "${pname}-tests" { meta.timeout = 60; } ''
8   # automatic initial setup to prevent interactive questions
9   ${phoronix-test-suite}/bin/phoronix-test-suite enterprise-setup >/dev/null
10   # get version of installed program and compare with package version
11   if [[ `${phoronix-test-suite}/bin/phoronix-test-suite version` != *"${version}"*  ]]; then
12     echo "Error: program version does not match package version"
13     exit 1
14   fi
15   # run dummy command
16   ${phoronix-test-suite}/bin/phoronix-test-suite dummy_module.dummy-command >/dev/null
17   # needed for Nix to register the command as successful
18   touch $out