summary refs log tree commit diff
path: root/nixos/tests/installed-tests
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2019-11-07 14:34:28 +0000
committerGitHub <noreply@github.com>2019-11-07 14:34:28 +0000
commit65b2a768bb543048e8c041284ea0a08ffe8686d8 (patch)
treef04e6597d98838d93bf1b9ace0c175ed441122dc /nixos/tests/installed-tests
parent4dc696be90feafb148c6b8372cf9149aa920d0b3 (diff)
parent3e09be839a5774af2d6fe77bb2b9646207920571 (diff)
downloadnixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar.gz
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar.bz2
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar.lz
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar.xz
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.tar.zst
nixpkgs-65b2a768bb543048e8c041284ea0a08ffe8686d8.zip
Merge pull request #72979 from worldofpeace/more-gnome-installed-test-cleanup
More gnome installed test cleanup
Diffstat (limited to 'nixos/tests/installed-tests')
-rw-r--r--nixos/tests/installed-tests/default.nix1
-rw-r--r--nixos/tests/installed-tests/libgdata.nix11
2 files changed, 12 insertions, 0 deletions
diff --git a/nixos/tests/installed-tests/default.nix b/nixos/tests/installed-tests/default.nix
index c0bafcca55f..f4780bdcfc9 100644
--- a/nixos/tests/installed-tests/default.nix
+++ b/nixos/tests/installed-tests/default.nix
@@ -73,6 +73,7 @@ in
   glib-networking = callInstalledTest ./glib-networking.nix {};
   gnome-photos = callInstalledTest ./gnome-photos.nix {};
   graphene = callInstalledTest ./graphene.nix {};
+  libgdata = callInstalledTest ./libgdata.nix {};
   libxmlb = callInstalledTest ./libxmlb.nix {};
   ostree = callInstalledTest ./ostree.nix {};
   xdg-desktop-portal = callInstalledTest ./xdg-desktop-portal.nix {};
diff --git a/nixos/tests/installed-tests/libgdata.nix b/nixos/tests/installed-tests/libgdata.nix
new file mode 100644
index 00000000000..f11a7bc1bc5
--- /dev/null
+++ b/nixos/tests/installed-tests/libgdata.nix
@@ -0,0 +1,11 @@
+{ pkgs, makeInstalledTest, ... }:
+
+makeInstalledTest {
+  tested = pkgs.libgdata;
+
+  testConfig = {
+    # # GLib-GIO-DEBUG: _g_io_module_get_default: Found default implementation dummy (GDummyTlsBackend) for ‘gio-tls-backend’
+    # Bail out! libgdata:ERROR:../gdata/tests/common.c:134:gdata_test_init: assertion failed (child_error == NULL): TLS support is not available (g-tls-error-quark, 0)
+    services.gnome3.glib-networking.enable = true;
+  };
+}