diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2017-01-16 16:13:55 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2017-01-16 18:24:53 +0000 |
commit | 5cd7b656de392a6dcd05cd55cf9d330c0ab5cd07 (patch) | |
tree | f9601547b30dc8ac86038ed82e27caf75bf48d0c /configure.ac | |
parent | 1fb2947aea679afeb061b38538c0a6ea8b3254a2 (diff) |
Enable Chart XShape tests on Windows by default
They pass both locally and on CI builds on Windows, so I think they
are reliable enough to be enabled by default. On Linux CI builds one
tests is failing but not locally, so not enabling them on Linux for
now. Mac is a whole different story with most of the tests failing.
Change-Id: I1f2cf6f318ddce3c68d7353c49fc510f895bbb6a
Reviewed-on: https://gerrit.libreoffice.org/33173
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Khaled Hosny <khaledhosny@eglug.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 422b09042bea..6c34a3043621 100644 --- a/configure.ac +++ b/configure.ac @@ -9429,7 +9429,7 @@ dnl =================================================================== dnl Check for enabling chart XShape tests dnl =================================================================== AC_MSG_CHECKING([whether to execute chart XShape tests]) -if test "$enable_chart_tests" = "yes"; then +if test "$enable_chart_tests" = "yes" -o '(' "$_os" = "WINNT" -a "$enable_chart_tests" != "no" ')'; then AC_MSG_RESULT([yes]) ENABLE_CHART_TESTS=TRUE AC_SUBST(ENABLE_CHART_TESTS) |