Lines Matching defs:str
60 def add_error(self, error_message: str) -> None:
178 def __init__(self, lines: Iterator[Tuple[int, str]]): argument
228 def extract_tap_lines(kernel_output: Iterable[str]) -> LineStream:
230 def isolate_ktap_output(kernel_output: Iterable[str]) \
264 version_type: str, test: Test) -> None:
501 def red(text: str) -> str:
505 def yellow(text: str) -> str:
509 def green(text: str) -> str:
515 def print_with_timestamp(message: str) -> None:
519 def format_test_divider(message: str, len_message: int) -> str:
565 def print_log(log: Iterable[str]) -> None:
649 def print_error(error_message: str) -> None:
684 def parse_test(lines: LineStream, expected_num: int, log: List[str]) -> Test:
793 def parse_run_tests(kernel_output: Iterable[str]) -> TestResult: