Skip to content
Snippets Groups Projects
Commit 04704d16 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

more tests

parent b67684d8
No related branches found
No related tags found
1 merge request!69WIP: Upgrade to OpenSSL 1.1.1k
Pipeline #353 failed
# The overall unit test suite for PrivateStorageio NixOS configuration.
let
pkgs = import <nixpkgs> { };
pspkgs = pkgs.callPackage ./modules/pspkgs.nix { };
# Total the numbers in a list.
sum = builtins.foldl' (a: b: a + b) 0;
......@@ -10,10 +11,9 @@ let
testModules =
[ (import ./lib/tests/test_ini.nix (pkgs.callPackage ./lib/ini.nix { }))
(import ./lib/tests/test_openssl.nix pkgs.openssl)
(import ./lib/tests/test_openssl.nix pspkgs.openssl)
(import ./lib/tests/test_packages.nix { inherit pkgs; })
(import ./lib/tests/test_pspackages.nix {
pspkgs = pkgs.callPackage ./modules/pspkgs.nix { };
})
(import ./lib/tests/test_pspackages.nix { inherit pspkgs; })
];
# Count up the tests we're going to run.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment