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