W32 testsuite results

Vincent Torri vincent.torri at gmail.com
Fri Apr 8 07:58:07 CEST 2011


On Fri, Apr 8, 2011 at 12:06 AM, Nikos Mavrogiannopoulos <nmav at gnutls.org>wrote:

> On 04/06/2011 08:17 PM, LRN wrote:
>
> Does this in configure.ac cause a problem in windows?
> -if test -d tests/suite;then
> -AC_CONFIG_FILES([tests/suite/Makefile])
> -fi
>
> We use it to run extra tests on the git branch. Is test
> the problem?
>

It's not the correct way to do what you want . Do that instead:

AM_CONDITIONAL([WANT_TEST_SUITE], [test -d tests/suite])

and in tests/Makefile.am, remove 'suite' from SUBDIRS and add:

if WANT_TEST_SUITE
SUBDIRS += suite
endif

Vincent Torri
-------------- next part --------------
An HTML attachment was scrubbed...
URL: </pipermail/attachments/20110408/b44dfb59/attachment.htm>


More information about the Gnutls-devel mailing list