php: Add passthru.tests

This commit is contained in:
talyz 2020-04-26 16:41:39 +02:00
parent ef990961bc
commit 3bfd4e864f
No known key found for this signature in database
GPG key ID: 2DED2151F4671A2B

View file

@ -1,11 +1,11 @@
# We have tests for PCRE and PHP-FPM in nixos/tests/php/ or # We have tests for PCRE and PHP-FPM in nixos/tests/php/ or
# both in the same attribute named nixosTests.php # both in the same attribute named nixosTests.php
{ callPackage, lib, stdenv }@_args: { callPackage, lib, stdenv, nixosTests }@_args:
let let
generic = generic =
{ callPackage, lib, stdenv, config, fetchurl, makeWrapper { callPackage, lib, stdenv, nixosTests, config, fetchurl, makeWrapper
, symlinkJoin, writeText, autoconf, automake, bison, flex, libtool , symlinkJoin, writeText, autoconf, automake, bison, flex, libtool
, pkgconfig, re2c, apacheHttpd, libargon2, libxml2, pcre, pcre2 , pkgconfig, re2c, apacheHttpd, libargon2, libxml2, pcre, pcre2
, systemd, valgrind , systemd, valgrind
@ -120,6 +120,7 @@ let
withExtensions = mkWithExtensions allArgs allExtensionFunctions; withExtensions = mkWithExtensions allArgs allExtensionFunctions;
phpIni = "${phpWithExtensions}/lib/php.ini"; phpIni = "${phpWithExtensions}/lib/php.ini";
unwrapped = php; unwrapped = php;
tests = nixosTests.php;
inherit (php-packages) packages extensions; inherit (php-packages) packages extensions;
}; };
paths = [ php ]; paths = [ php ];