diff options
-rwxr-xr-x[-rw-r--r--] | tools/testing/ktest/ktest.pl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tools/testing/ktest/ktest.pl b/tools/testing/ktest/ktest.pl index 5bd00755727c..0a5ed0db4ff3 100644..100755 --- a/tools/testing/ktest/ktest.pl +++ b/tools/testing/ktest/ktest.pl | |||
@@ -230,7 +230,7 @@ sub read_config { | |||
230 | } | 230 | } |
231 | } | 231 | } |
232 | 232 | ||
233 | sub logit { | 233 | sub _logit { |
234 | if (defined($opt{"LOG_FILE"})) { | 234 | if (defined($opt{"LOG_FILE"})) { |
235 | open(OUT, ">> $opt{LOG_FILE}") or die "Can't write to $opt{LOG_FILE}"; | 235 | open(OUT, ">> $opt{LOG_FILE}") or die "Can't write to $opt{LOG_FILE}"; |
236 | print OUT @_; | 236 | print OUT @_; |
@@ -238,9 +238,17 @@ sub logit { | |||
238 | } | 238 | } |
239 | } | 239 | } |
240 | 240 | ||
241 | sub logit { | ||
242 | if (defined($opt{"LOG_FILE"})) { | ||
243 | _logit @_; | ||
244 | } else { | ||
245 | print @_; | ||
246 | } | ||
247 | } | ||
248 | |||
241 | sub doprint { | 249 | sub doprint { |
242 | print @_; | 250 | print @_; |
243 | logit @_; | 251 | _logit @_; |
244 | } | 252 | } |
245 | 253 | ||
246 | sub run_command; | 254 | sub run_command; |