Skip failing test in 'test_connection_binding_match_tls_unique' in 'tls/tests/connection.c' when building glib-networking against GnuTLS 3.7.2. The failure stems from the fact that 'gnutls_session_channel_binding' returns GNUTLS_E_INVALID_REQUEST is known upstream: https://gitlab.gnome.org/GNOME/glib-networking/-/issues/164 diff --git a/tls/tests/connection.c b/tls/tests/connection.c index 036df04..347c7a4 100644 --- a/tls/tests/connection.c +++ b/tls/tests/connection.c @@ -3037,8 +3037,6 @@ main (int argc, setup_connection, test_connection_missing_server_identity, teardown_connection); g_test_add ("/tls/" BACKEND "/connection/peer-certificate-notify", TestConnection, NULL, setup_connection, test_peer_certificate_notify, teardown_connection); - g_test_add ("/tls/" BACKEND "/connection/binding/match-tls-unique", TestConnection, NULL, - setup_connection, test_connection_binding_match_tls_unique, teardown_connection); g_test_add ("/tls/" BACKEND "/connection/binding/match-tls-server-end-point", TestConnection, NULL, setup_connection, test_connection_binding_match_tls_server_end_point, teardown_connection); g_test_add ("/tls/" BACKEND "/connection/binding/match-tls-exporter", TestConnection, NULL, 791212'>treecommitdiff
path: root/gnu/services/sound.scm
AgeCommit message (Expand)Author
2020-05-06services: Do not use symbolic links in PulseAudio variables....This addresses <https://bugs.gnu.org/40837> by making these configuration files more easily accessible within the WebKitGTK sandbox. * gnu/services/sound.scm (pulseaudio-environment): Move below PULSEAUDIO-CONF-ENTRY. Instantiate PULSE_CONFIG and PULSE_CLIENTCONFIG entries directly instead of referring to /etc/pulse. (pulseaudio-etc): Do not create /etc/pulse/client.conf and /etc/pulse/daemon.conf. Marius Bakke
2020-01-11services: Split ladspa-service-type from pulseaudio-service-type....* gnu/services/sound.scm (ladspa-configuration): New record. (ladspa-environment): New procedure. (ladspa-service-type): New service type. (pulseaudio-environment): Remove LADSPA_PATH. * doc/guix.texi: Adjust documentation. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Leo Prikler
2020-01-11services: pulseaudio-configuration: Set flat-volumes to no....* gnu/services/sound (pulseaudio-configuration) [daemon-conf]: Disable flat-volumes, which causes unpleasant experiences to users when applications inadvertently max out the system volume (e.g. as in #38172). Signed-off-by: Marius Bakke <mbakke@fastmail.com> Leo Prikler
2020-01-11services: Add pulseaudio-configuration....* gnu/services/sound (<pulseaudio-configuration>): New record. (pulseaudio-etc): New procedure. (pulseaudio-environment): Add PULSE_CONFIG and PULSE_CLIENTCONFIG. (pulseaudio-service-type): Update accordingly. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Leo Prikler
2020-01-08services: Add pulseaudio service....* gnu/services/sound.scm (pulseaudio-environment): New procedure. (pulseaudio-service-type): New variable. * doc/guix.texi (Sound Services): Document it. Oleg Pykhalov