about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-05-18 10:48:05 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-05-18 12:24:08 +0200
commit25f95555990b2681a269b066c47bf790e3bcbf3f (patch)
tree469d7b3c2f5983346bf0812cab945e313a10d4fb /nixos/tests
parentbaf8061cd7d48cafb82c5af1edc3b9d3ba737db6 (diff)
downloadnixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar.gz
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar.bz2
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar.lz
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar.xz
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.tar.zst
nixlib-25f95555990b2681a269b066c47bf790e3bcbf3f.zip
Drop GNOME 3.12
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/gnome3_16.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/nixos/tests/gnome3_16.nix b/nixos/tests/gnome3_16.nix
deleted file mode 100644
index 23a66aba50c5..000000000000
--- a/nixos/tests/gnome3_16.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-import ./make-test.nix {
-  name = "gnome3";
-
-  machine =
-    { config, pkgs, ... }:
-
-    { imports = [ ./common/user-account.nix ];
-
-      services.xserver.enable = true;
-
-      services.xserver.displayManager.auto.enable = true;
-      services.xserver.displayManager.auto.user = "alice";
-      services.xserver.desktopManager.gnome3.enable = true;
-
-      environment.gnome3.packageSet = pkgs.gnome3_16;
-
-      virtualisation.memorySize = 512;
-    };
-
-  testScript =
-    ''
-      $machine->waitForX;
-      $machine->sleep(15);
-
-      # Check that logging in has given the user ownership of devices.
-      $machine->succeed("getfacl /dev/snd/timer | grep -q alice");
-
-      $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'");
-      $machine->waitForWindow(qr/Terminal/);
-      $machine->sleep(20);
-      $machine->screenshot("screen");
-    '';
-
-}