aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2012-07-22 02:35:00 +0200
committerJay Berkenbilt <ejb@ql.org>2012-07-22 02:35:00 +0200
commit31efe701aedaf2d67704f1b293dd919bd4cf5e3d (patch)
tree0bc262bd1627fc8f46b5f1a2799d11b885956b97 /configure.ac
parent5a02471bb15299dec00c73f6a08a2b4e73061775 (diff)
downloadqpdf-31efe701aedaf2d67704f1b293dd919bd4cf5e3d.tar.zst
Image comparison tests are off by default
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 24831ee8..91bddfe2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -213,13 +213,13 @@ fi
AC_SUBST(SKIP_TEST_COMPARE_IMAGES)
AC_ARG_ENABLE(test-compare-images,
AS_HELP_STRING([--enable-test-compare-images],
- [whether to compare images in test suite; enabled by default, enabling requires ghostscript and tiffcmp to be available]),
+ [whether to compare images in test suite; disabled by default, enabling requires ghostscript and tiffcmp to be available]),
[if test "$enableval" = "no"; then
SKIP_TEST_COMPARE_IMAGES=1
else
SKIP_TEST_COMPARE_IMAGES=0
fi],
- [SKIP_TEST_COMPARE_IMAGES=0])
+ [SKIP_TEST_COMPARE_IMAGES=1])
AC_SUBST(SHOW_FAILED_TEST_OUTPUT)
AC_ARG_ENABLE(show-failed-test-output,