about summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-08-06 18:24:21 -0400
committerworldofpeace <worldofpeace@protonmail.ch>2019-08-06 20:51:44 -0400
commit5efe51ccc267095d4c43fc7bab6004dd034746a7 (patch)
treee316ebbbfa9a7ba2318bf2b5def51acf48b56826
parent087c640e1aa8ae9bf06931ebbf31ad4a91ce7293 (diff)
downloadnixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar.gz
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar.bz2
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar.lz
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar.xz
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.tar.zst
nixlib-5efe51ccc267095d4c43fc7bab6004dd034746a7.zip
nixosTests.gnome3: rename from gnome3-gdm
The actual only difference from the gnome3-xorg
test is that this tests the wayland session.
It's also more accurate to call it just "gnome3"
since wayland is default here.
-rw-r--r--nixos/tests/all-tests.nix2
-rw-r--r--nixos/tests/gnome3.nix (renamed from nixos/tests/gnome3-gdm.nix)3
2 files changed, 3 insertions, 2 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index d49853825aaa..3e45b28e6a1e 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -94,7 +94,7 @@ in
   gitolite = handleTest ./gitolite.nix {};
   gjs = handleTest ./gjs.nix {};
   gnome3-xorg = handleTestOn ["x86_64-linux"] ./gnome3-xorg.nix {}; # libsmbios is unsupported on aarch64
-  gnome3-gdm = handleTestOn ["x86_64-linux"] ./gnome3-gdm.nix {}; # libsmbios is unsupported on aarch64
+  gnome3 = handleTestOn ["x86_64-linux"] ./gnome3.nix {}; # libsmbios is unsupported on aarch64
   gocd-agent = handleTest ./gocd-agent.nix {};
   gocd-server = handleTest ./gocd-server.nix {};
   google-oslogin = handleTest ./google-oslogin {};
diff --git a/nixos/tests/gnome3-gdm.nix b/nixos/tests/gnome3.nix
index c2808d87d99d..da95105aeab5 100644
--- a/nixos/tests/gnome3-gdm.nix
+++ b/nixos/tests/gnome3.nix
@@ -1,5 +1,5 @@
 import ./make-test.nix ({ pkgs, ...} : {
-  name = "gnome3-gdm";
+  name = "gnome3";
   meta = with pkgs.stdenv.lib.maintainers; {
     maintainers = [ lethalman ];
   };
@@ -18,6 +18,7 @@ import ./make-test.nix ({ pkgs, ...} : {
           user = "alice";
         };
       };
+
       services.xserver.desktopManager.gnome3.enable = true;
 
       virtualisation.memorySize = 1024;