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, 5b14ab3e0c98221fb55bc29cfa54973363'>treecommitdiff
path: root/gnu/installer/newt/keymap.scm
AgeCommit message (Expand)Author
2022-02-02installer: Use named prompt to abort or break installer steps....* gnu/installer/steps.scm (run-installer-steps): Set up 'installer-step prompt. * gnu/installer/newt/ethernet.scm (run-ethernet-page) * gnu/installer/newt/final.scm (run-config-display-page, run-install-failed-page) * gnu/installer/newt/keymap.scm (run-layout-page, run-variant-page) * gnu/installer/newt/locale.scm (run-language-page, run-territory-page, run-codeset-page, run-modifier-page, run-locale-page) * gnu/installer/newt/network.scm (run-technology-page, wait-service-online) * gnu/installer/newt/page.scm (run-listbox-selection-page, run-checkbox-tree-page) * gnu/installer/newt/partition.scm (button-exit-action) * gnu/installer/newt/services.scm (run-desktop-environments-cbt-page, run-networking-cbt-page, run-other-services-cbt-page, run-network-management-page) * gnu/installer/newt/timezone.scm (run-timezone-page) * gnu/installer/newt/user.scm (run-user-page) * gnu/installer/newt/welcome.scm (run-menu-page) * gnu/installer/newt/wifi.scm (run-wifi-page): Use the 'installer-step prompt to abort. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Josselin Poiret
2021-01-12installer: Fix crash in parameters menu....Fixes: <https://issues.guix.gnu.org/45378>. * gnu/installer/newt/keymap.scm (run-layout-page): Return false when "Continue" button is pressed. (run-keymap-page): Do not try to compute variants if layout is false. Also do not try to format the result if layout is false. * gnu/installer.scm (compute-keymap-step): Do not apply keymap if "run-keymap-page" returns false. Mathieu Othacehe