File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1995,6 +1995,7 @@ void help(void)
1995
1995
"-s run tests in strict mode, skip @nostrict tests\n"
1996
1996
"-E only run tests from the error file\n"
1997
1997
"-u update error file\n"
1998
+ "-C compact output mode; enabled when stderr is not a tty\n"
1998
1999
"-v verbose: output error messages\n"
1999
2000
"-T duration display tests taking more than 'duration' ms\n"
2000
2001
"-c file read configuration from 'file'\n"
@@ -2066,6 +2067,8 @@ int main(int argc, char **argv)
2066
2067
update_errors ++ ;
2067
2068
} else if (str_equal (arg , "-v" )) {
2068
2069
verbose ++ ;
2070
+ } else if (str_equal (arg , "-C" )) {
2071
+ compact ++ ;
2069
2072
} else if (str_equal (arg , "-c" )) {
2070
2073
load_config (get_opt_arg (arg , argv [optind ++ ]), ignore );
2071
2074
} else if (str_equal (arg , "-d" )) {
You can’t perform that action at this time.
0 commit comments