get the verbosity with the env variable CK_VERBOSITY. By default, nothing is changed.

Values for CK_VERBOSITY:
silent
minimal
normal (the default)
verbose

Ex. of use:

CK_VERBOSITY=verbose make check


SVN revision: 51534
This commit is contained in:
Vincent Torri 2010-08-22 17:53:01 +00:00
parent bb17bf9216
commit 426da862ae
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ main(int argc, char **argv)
s = ecore_suite_build(argc - 1, (const char **)argv + 1);
sr = srunner_create(s);
srunner_run_all(sr, CK_NORMAL);
srunner_run_all(sr, CK_ENV);
failed_count = srunner_ntests_failed(sr);
srunner_free(sr);