瀏覽代碼

Merge pull request #27 from sbraz/cppunit

Disable cppunit  tests by default, honor --enable-cppunit
tags/v0.99.beta20
Sam Hocevar GitHub 3 年之前
父節點
當前提交
e972db074f
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. +4
    -2
      configure.ac

+ 4
- 2
configure.ac 查看文件

@@ -571,8 +571,10 @@ AM_CONDITIONAL(BUILD_DOCUMENTATION, test "${DOXYGEN}" != "no")
AM_CONDITIONAL(USE_LATEX, test "${LATEX}" != "no")

# Use cppunit for unit tests?
PKG_CHECK_MODULES(CPPUNIT, cppunit, [CPPUNIT="yes"], [CPPUNIT="no"])
AM_CONDITIONAL(USE_CPPUNIT, test "$CPPUNIT" = "yes")
AS_IF([test "x$enable_cppunit" = "xyes"], [
PKG_CHECK_MODULES([CPPUNIT], [cppunit])
])
AM_CONDITIONAL([USE_CPPUNIT], [test "x$enable_cppunit" = "xyes"])

# Use zzuf for fuzzing tests?
ZZUF="no"


Loading…
取消
儲存