Lines Matching full:log
18 self.log_file = self.getBuildArtifact("log-file.txt")
28 # By default, Debugger::EnableLog() will set log options to
31 self.runCmd("log enable -f '%s' lldb commands" % (self.log_file))
39 self.runCmd("log disable lldb")
47 self.assertGreater(len(log_lines), 0, "Something was written to the log file.")
49 # Check that lldb truncates its log files
51 # put something in our log file
56 self.runCmd("log enable -f '%s' lldb commands" % self.log_file)
57 self.runCmd("help log")
58 self.runCmd("log disable lldb")
67 # Check that lldb can append to a log file
69 # put something in our log file
73 self.runCmd("log enable -a -f '%s' lldb commands" % self.log_file)
74 self.runCmd("help log")
75 self.runCmd("log disable lldb")
84 # Enable all log options and check that nothing crashes.
91 "log enable -v -s -T -p -n -S -F -f '%s' lldb commands" % self.log_file
93 self.runCmd("help log")
94 self.runCmd("log disable lldb")