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. # The overall unit test suite for PrivateStorageio NixOS configuration.
let let
pkgs = import <nixpkgs> { }; pkgs = import <nixpkgs> { };
pspkgs = pkgs.callPackage ./modules/pspkgs.nix { };
# Total the numbers in a list. # Total the numbers in a list.
sum = builtins.foldl' (a: b: a + b) 0; sum = builtins.foldl' (a: b: a + b) 0;
...@@ -10,10 +11,9 @@ let ...@@ -10,10 +11,9 @@ let
testModules = testModules =
[ (import ./lib/tests/test_ini.nix (pkgs.callPackage ./lib/ini.nix { })) [ (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 pkgs.openssl)
(import ./lib/tests/test_openssl.nix pspkgs.openssl)
(import ./lib/tests/test_packages.nix { inherit pkgs; }) (import ./lib/tests/test_packages.nix { inherit pkgs; })
(import ./lib/tests/test_pspackages.nix { (import ./lib/tests/test_pspackages.nix { inherit pspkgs; })
pspkgs = pkgs.callPackage ./modules/pspkgs.nix { };
})
]; ];
# Count up the tests we're going to run. # 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