about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-06-09 18:14:53 +0000
committerGitHub <noreply@github.com>2021-06-09 18:14:53 +0000
commitcf8441dd85f82eb9d4caa10ef9cd2b03374bcab5 (patch)
tree6692873c6197e5a072cb904fa49fa12bb2efd235 /nixos/tests
parentcafee546ef9c1e6ab6e685ded9ff0a5e3a66853c (diff)
parentf242b07bc23230b0edd002a8d9696a5f070f50ea (diff)
downloadnixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar.gz
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar.bz2
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar.lz
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar.xz
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.tar.zst
nixlib-cf8441dd85f82eb9d4caa10ef9cd2b03374bcab5.zip
Merge staging-next into staging
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/custom-ca.nix20
-rw-r--r--nixos/tests/kernel-generic.nix1
2 files changed, 17 insertions, 4 deletions
diff --git a/nixos/tests/custom-ca.nix b/nixos/tests/custom-ca.nix
index 7ce1101911db..26f29a3e68fe 100644
--- a/nixos/tests/custom-ca.nix
+++ b/nixos/tests/custom-ca.nix
@@ -107,8 +107,15 @@ in
           '';
         };
 
-      environment.systemPackages = with pkgs;
-        [ xdotool firefox chromium falkon midori ];
+      environment.systemPackages = with pkgs; [
+        xdotool
+        # Firefox was disabled here, because we needed to disable p11-kit support in nss,
+        # which is why it will not use the system certificate store for the time being.
+        # firefox
+        chromium
+        falkon
+        midori
+      ];
     };
 
   testScript = ''
@@ -145,7 +152,14 @@ in
     with subtest("Unknown CA is untrusted in curl"):
         machine.fail("curl -fv https://bad.example.com")
 
-    browsers = ["firefox", "chromium", "falkon", "midori"]
+    browsers = [
+      # Firefox was disabled here, because we needed to disable p11-kit support in nss,
+      # which is why it will not use the system certificate store for the time being.
+      # "firefox",
+      "chromium",
+      "falkon",
+      "midori"
+    ]
     errors = ["Security Risk", "not private", "Certificate Error", "Security"]
 
     machine.wait_for_x()
diff --git a/nixos/tests/kernel-generic.nix b/nixos/tests/kernel-generic.nix
index a300609cf2bf..cb23bb2fc2d4 100644
--- a/nixos/tests/kernel-generic.nix
+++ b/nixos/tests/kernel-generic.nix
@@ -31,7 +31,6 @@ with pkgs; {
   linux_4_19 = makeKernelTest "4.19" linuxPackages_4_19;
   linux_5_4 = makeKernelTest "5.4" linuxPackages_5_4;
   linux_5_10 = makeKernelTest "5.10" linuxPackages_5_10;
-  linux_5_11 = makeKernelTest "5.11" linuxPackages_5_11;
   linux_5_12 = makeKernelTest "5.12" linuxPackages_5_12;
 
   linux_testing = makeKernelTest "testing" linuxPackages_testing;