summary refs log tree commit diff
path: root/pkgs/tools/misc/phoronix-test-suite
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2020-04-24 22:21:39 +0200
committerGitHub <noreply@github.com>2020-04-24 22:21:39 +0200
commit0dfdfc263d183e584afb70a9fc03df8e01f5f561 (patch)
treebf2c28c0ebde32b03c492150d9fc889c33d54057 /pkgs/tools/misc/phoronix-test-suite
parent7d30b4d1b57fc6fb11b0b34aea9fd313d40447d4 (diff)
parente9007b3e3ebc31db7ae893f325e3824e91fe85dd (diff)
downloadnixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar.gz
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar.bz2
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar.lz
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar.xz
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.tar.zst
nixpkgs-0dfdfc263d183e584afb70a9fc03df8e01f5f561.zip
Merge pull request #75117 from davidak/phoronix-test-suite-tests
phoronix-test-suite: add tests
Diffstat (limited to 'pkgs/tools/misc/phoronix-test-suite')
-rw-r--r--pkgs/tools/misc/phoronix-test-suite/default.nix6
-rw-r--r--pkgs/tools/misc/phoronix-test-suite/tests.nix20
2 files changed, 25 insertions, 1 deletions
diff --git a/pkgs/tools/misc/phoronix-test-suite/default.nix b/pkgs/tools/misc/phoronix-test-suite/default.nix
index 00ed2db1073..617d6675c68 100644
--- a/pkgs/tools/misc/phoronix-test-suite/default.nix
+++ b/pkgs/tools/misc/phoronix-test-suite/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, php, which, gnused, makeWrapper, gnumake, gcc }:
+{ stdenv, fetchurl, php, which, gnused, makeWrapper, gnumake, gcc, callPackage }:
 
 stdenv.mkDerivation rec {
   pname = "phoronix-test-suite";
@@ -19,6 +19,10 @@ stdenv.mkDerivation rec {
     --prefix PATH : ${stdenv.lib.makeBinPath [ gnumake gcc ]}
   '';
 
+  passthru.tests = {
+    simple-execution = callPackage ./tests.nix { };
+  };
+
   meta = with stdenv.lib; {
     description = "Open-Source, Automated Benchmarking";
     homepage = "https://www.phoronix-test-suite.com/";
diff --git a/pkgs/tools/misc/phoronix-test-suite/tests.nix b/pkgs/tools/misc/phoronix-test-suite/tests.nix
new file mode 100644
index 00000000000..06bd9def9aa
--- /dev/null
+++ b/pkgs/tools/misc/phoronix-test-suite/tests.nix
@@ -0,0 +1,20 @@
+{ runCommand, phoronix-test-suite }:
+
+let
+  inherit (phoronix-test-suite) pname version;
+in
+
+runCommand "${pname}-tests" { meta.timeout = 3; }
+  ''
+    # automatic initial setup to prevent interactive questions
+    ${phoronix-test-suite}/bin/phoronix-test-suite enterprise-setup >/dev/null
+    # get version of installed program and compare with package version
+    if [[ `${phoronix-test-suite}/bin/phoronix-test-suite version` != *"${version}"*  ]]; then
+      echo "Error: program version does not match package version"
+      exit 1
+    fi
+    # run dummy command
+    ${phoronix-test-suite}/bin/phoronix-test-suite dummy_module.dummy-command >/dev/null
+    # needed for Nix to register the command as successful
+    touch $out
+  ''