소스 검색

Merge pull request #27 from sbraz/cppunit

Disable cppunit  tests by default, honor --enable-cppunit
tags/v0.99.beta20
Sam Hocevar GitHub 3 년 전
부모
커밋
e972db074f
No known key found for this signature in database GPG 키 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"


불러오는 중...
취소
저장