summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2019-03-18 09:25:37 -0400
committerGitHub <noreply@github.com>2019-03-18 09:25:37 -0400
commitc94f6f22d89668bb0c64db0e77d26f69e27eb395 (patch)
tree008adb2a08b1e2e7de2a9d55b9bb47f12f5be060 /nixos
parent9b202b6f3d34b15a00966ac64f54102bb625d2b2 (diff)
parent5e7623aefc5035f849aa6515e04210b35190ca40 (diff)
Merge pull request #57840 from worldofpeace/colord/bump
colord: 1.4.2 -> 1.4.4
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/all-tests.nix1
-rw-r--r--nixos/tests/colord.nix18
2 files changed, 19 insertions, 0 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index de5b8bbb7c06..235d2b1febc6 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -43,6 +43,7 @@ in
clickhouse = handleTest ./clickhouse.nix {};
cloud-init = handleTest ./cloud-init.nix {};
codimd = handleTest ./codimd.nix {};
+ colord = handleTest ./colord.nix {};
containers-bridge = handleTest ./containers-bridge.nix {};
containers-extra_veth = handleTest ./containers-extra_veth.nix {};
containers-hosts = handleTest ./containers-hosts.nix {};
diff --git a/nixos/tests/colord.nix b/nixos/tests/colord.nix
new file mode 100644
index 000000000000..ce38aaca4bf2
--- /dev/null
+++ b/nixos/tests/colord.nix
@@ -0,0 +1,18 @@
+# run installed tests
+import ./make-test.nix ({ pkgs, ... }:
+
+{
+ name = "colord";
+
+ meta = {
+ maintainers = pkgs.colord.meta.maintainers;
+ };
+
+ machine = { pkgs, ... }: {
+ environment.systemPackages = with pkgs; [ gnome-desktop-testing ];
+ };
+
+ testScript = ''
+ $machine->succeed("gnome-desktop-testing-runner -d '${pkgs.colord.installedTests}/share'");
+ '';
+})