Changeset 2517
- Timestamp:
- Jul 11, 2011, 3:58:16 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r2487 r2517 100 100 AC_SUBST(have_doxygen) 101 101 AM_CONDITIONAL([DX_ENABLE_HTML], [test x$have_doxygen = xyes]) 102 AC_CONFIG_FILES([test/documentation_test.sh],103 [chmod +x test/documentation_test.sh])104 102 105 103 # check for quiet_NaN support in OS -
trunk/test/Makefile.am
r2510 r2517 67 67 XFAIL_TESTS = 68 68 69 TESTS += documentation_test.sh70 71 69 DISTRIBUTED_TESTS = \ 70 doxygen_test.sh \ 72 71 help_test.sh \ 73 72 static_test.sh \ … … 117 116 yat_msg_error_test2.log:$(top_srcdir)/m4/yat_msg_error.m4 common_defs.sh 118 117 119 ## We always rerun do cumentation_test. When sources for doxygen have118 ## We always rerun doxygen_test. When sources for doxygen have 120 119 ## not changed and a rerun would not be needed, the test is very 121 120 ## inexpensive because 'make doc' will not run anything, in other 122 121 ## words, we always run the test but let the logic for 'make doc' take 123 122 ## care of whether doxygen will run or not. 124 do cumentation_test.log: FORCE123 doxygen_test.log: FORCE 125 124 126 125 -
trunk/test/common_defs.sh.in
r2458 r2517 105 105 abs_top_srcdir=@abs_top_srcdir@ 106 106 move_if_change=@abs_top_srcdir@/build_support/move-if-change 107 have_doxygen="@have_doxygen@" 108 109 # user is always right 110 test -z "$DOXYGEN" && DOXYGEN="@DOXYGEN@" 107 111 108 112 rm -rf $test_dir -
trunk/test/doxygen_test.sh
r2516 r2517 1 #!@SHELL@ 2 # @configure_input@ 1 #!/bin/sh 3 2 4 3 # $Id$ … … 23 22 # 24 23 25 have_doxygen="@have_doxygen@" 24 required=doxygen 25 . ./common_defs.sh || exit 1 26 26 27 27 if test $have_doxygen = "no"; then … … 30 30 fi 31 31 32 echo @ECHO_N@"doxygen "33 @DOXYGEN@--version34 (cd @abs_top_builddir@/doc && make doc < /dev/null) || exit 135 if test ! -e @abs_top_builddir@/doc/doxygen.error; then36 echo Cannot find file: @abs_top_builddir@/doc/doxygen.error32 printf "doxygen " 33 $DOXYGEN --version 34 (cd $abs_top_builddir/doc && make doc < /dev/null) || exit 1 35 if test ! -e $abs_top_builddir/doc/doxygen.error; then 36 echo Cannot find file: $abs_top_builddir/doc/doxygen.error 37 37 exit 1; 38 38 fi 39 if test -s @abs_top_builddir@/doc/doxygen.error; then39 if test -s $abs_top_builddir/doc/doxygen.error; then 40 40 41 cat @abs_top_builddir@/doc/doxygen.error41 cat $abs_top_builddir/doc/doxygen.error 42 42 exit 1; 43 43 fi
Note: See TracChangeset
for help on using the changeset viewer.