Home | History | Annotate | Download | only in testrunner

Lines Matching refs:_LOG_FILE

26 _LOG_FILE = None
32 global _LOG_FILE
33 _LOG_FILE = log_file_path
34 print "Using log file: %s" % _LOG_FILE
38 global _LOG_FILE
39 return _LOG_FILE
42 """Appends new_str to the end of _LOG_FILE and prints it to stdout.
53 global _LOG_FILE
54 if _LOG_FILE is not None:
55 file_handle = file(_LOG_FILE, 'a')