// file : bdep/test.cli // license : MIT; see accompanying LICENSE file include ; "\section=1" "\name=bdep-test" "\summary=test project in build configurations" namespace bdep { { " ", "\h|SYNOPSIS| \c{\b{bdep test} [] [] [] [...]} \c{ = (\b{@} | \b{--config}|\b{-c} )... | \b{--all}|\b{-a}\n = (\b{--directory}|\b{-d} )... | \n = \b{--directory}|\b{-d} } \h|DESCRIPTION| The \cb{test} command tests the project packages in one or more build configurations. Additionally, immediate or all dependencies of the project packages can be tested by specifying the \c{\b{--immediate}|\b{-i}} or \c{\b{--recursive}|\b{-r}} options, respectively. Underneath \cb{test} executes the \l{bpkg-pkg-test(1)} command which itself is not much more than the build system \cb{test} operation (see \l{b(1)} for details). As a result, the main utility of this command is the ability to refer to build configurations by names and to project packages implicitly via the current working directory as well as to test dependencies. If no project or package directory is specified, then the current working directory is assumed. If no configuration is specified, then the default configurations are assumed. See \l{bdep-projects-configs(1)} for details on specifying projects and configurations. Optional \c{\i{cfg-var}...} are the additional configuration variables to pass to the build system. " } class cmd_test_options: project_options { "\h|TEST OPTIONS|" bool --immediate|-i { "Also test immediate dependencies." } bool --recursive|-r { "Also test all dependencies, recursively." } }; " \h|DEFAULT OPTIONS FILES| See \l{bdep-default-options-files(1)} for an overview of the default options files. For the \cb{test} command the search start directory is the project directory. The following options files are searched for in each directory and, if found, loaded in the order listed: \ bdep.options bdep-test.options \ The following \cb{test} command options cannot be specified in the default options files: \ --directory|-d \ " }