about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/installed-tests/libgdata.nix
blob: f11a7bc1bc5111256b69e64aa6ae0f70591a28c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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;
  };
}