--- test/testsock.c 2013-01-24 06:57:21.000000000 +0100 +++ test/testsock.c 2013-01-24 17:24:54.000000000 +0100 @@ -90,16 +90,22 @@ rv = apr_sockaddr_info_get(&sa, NULL, APR_UNSPEC, 0, 0, p); APR_ASSERT_SUCCESS(tc, "Problem generating sockaddr", rv); + /* /etc/services is not available while compiling, so apr_getservbyname + * will always return APR_ENOENT. */ +#if 0 rv = apr_getservbyname(sa, "ftp"); APR_ASSERT_SUCCESS(tc, "Problem getting ftp service", rv); ABTS_INT_EQUAL(tc, 21, sa->port); +#endif rv = apr_getservbyname(sa, "complete_and_utter_rubbish"); APR_ASSERT_SUCCESS(tc, "Problem getting non-existent service", !rv); +#if 0 rv = apr_getservbyname(sa, "telnet"); APR_ASSERT_SUCCESS(tc, "Problem getting telnet service", rv); ABTS_INT_EQUAL(tc, 23, sa->port); +#endif } static apr_socket_t *setup_socket(abts_case *tc) tr>Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/mtools.scm
AgeCommit message (Expand)Author
2017-01-28gnu: exfat-utils: Update to 1.2.6....* gnu/packages/mtools.scm (exfat-utils): Update to 1.2.6. Tobias Geerinckx-Rice
2017-01-05gnu: Remove unused module import from (gnu packages mtools)....This is a follow-up to commit 3b0f2ba46b8c14cf9d9729e13e006af697d07403. * gnu/packages/mtools.scm: Remove import of (gnu packages python). Tobias Geerinckx-Rice
2016-12-05gnu: exfat-utils: Update to 1.2.5....* gnu/packages/mtools.scm (exfat-utils): Update to 1.2.5. Tobias Geerinckx-Rice
2016-11-13gnu: exfat-utils: Update to 1.2.4....* gnu/packages/mtools.scm (exfat-utils): Update to 1.2.4. [source, home-page]: Move away from dead Google Code project. [arguments, native-inputs]: Remove. Tobias Geerinckx-Rice
2015-08-20gnu: Add exfat-utils....* gnu/packages/mtools.scm (exfat-utils): New variable. Ludovic Courtès