comparison doc/interpreter/testfun.txi @ 21226:a55b8ece1ecd

reorganize octave_config_info again * build-env-features.sh: Don't include ENABLE_ items in the output. * toplev.cc (find_config_info): New static function. (Foctave_config_info): Put Octave configuration info in the main struct. Put the build system features and build environment info in substructures. Allow searching of all elements by keyword. * __have_feature__.m, doc/interpreter/testfun.txi: Fix name of build features substructure element. * geometryimages.m, interpimages.m, plotimages.m, sparseimages.m, splineimages.m: Use __have_feature__ to check for OSMESA.
author John W. Eaton <jwe@octave.org>
date Mon, 08 Feb 2016 23:14:56 -0500
parents 4197fc428c7d
children a4faec57f4c8
comparison
equal deleted inserted replaced
21225:19a619ac9508 21226:a55b8ece1ecd
139 @example 139 @example
140 %!testif HAVE_ARPACK 140 %!testif HAVE_ARPACK
141 @end example 141 @end example
142 142
143 @noindent 143 @noindent
144 Review @file{config.h} or @code{octave_config_info ("features")} to see some 144 Review @file{config.h} or @code{octave_config_info ("build_features")}
145 of the possible values to check. 145 to see some of the possible values to check.
146 146
147 Sometimes during development there is a test that should work but is 147 Sometimes during development there is a test that should work but is
148 known to fail. You still want to leave the test in because when the 148 known to fail. You still want to leave the test in because when the
149 final code is ready the test should pass, but you may not be able to 149 final code is ready the test should pass, but you may not be able to
150 fix it immediately. To avoid unnecessary bug reports for these known 150 fix it immediately. To avoid unnecessary bug reports for these known