Somehow, Aspell 0.60.6.1 and aspell-dict-en-2016.11.20-0 don't consider this a valid spelling. Skip it. TODO: Migrate to using hunspell. According to upstream, this bug won't be fixed. See https://bugzilla.gnome.org/show_bug.cgi?id=772406. --- a/testsuite/test-checker.c 2017-03-24 09:50:50.000000000 -0400 +++ b/testsuite/test-checker.c 2017-06-15 21:47:07.116173895 -0400 @@ -105,10 +105,11 @@ * be considered deprecated, it is better to use hunspell, so WONTFIX. * For more details, see: * https://bugzilla.gnome.org/show_bug.cgi?id=772406 + * + * correctly_spelled = gspell_checker_check_word (checker, "spell-checking", -1, &error); + * g_assert_no_error (error); + * g_assert (correctly_spelled); */ - correctly_spelled = gspell_checker_check_word (checker, "spell-checking", -1, &error); - g_assert_no_error (error); - g_assert (correctly_spelled); correctly_spelled = gspell_checker_check_word (checker, "nrst-auie", -1, &error); g_assert_no_error (error); tr>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/ldap.scm
AgeCommit message (Expand)Author
2021-04-18tests: ldap: Fix it....Fixes: <https://issues.guix.gnu.org/47745>. * gnu/tests/ldap.scm (run-ldap-test): Use a password with more that 8 characters so that dscreate doesn't fail. Mathieu Othacehe
2019-03-20services: Add nslcd-service-type....* gnu/services/authentication.scm (nslcd-service-type, nslcd-configuration, %nslcd-accounts): New variables. (uglify-field-name, value->string, serialize-field, serialize-list, ssl-option?, tls-reqcert-option?, deref-option?, comma-separated-list-of-strings?, serialize-ignore-users-option, log-option?, serialize-log-option, valid-map?, scope-option?, serialize-scope-option, map-entry?, list-of-map-entries?, filter-entry?, list-of-filter-entries?, serialize-filter-entry, serialize-list-of-filter-entries, serialize-map-entry, serialize-list-of-map-entries, nslcd-config-file, nslcd-etc-service, nslcd-shepherd-service, pam-ldap-pam-services, pam-ldap-pam-service, generate-nslcd-documentation): New procedures. * gnu/tests/ldap.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Add it. * doc/guix.texi (LDAP Services): Document it. Ricardo Wurmus