jw-devtest/src/python/devtest/os/test/cases/PostStartup.py
Jan Lindemann 4b912741cb First commit
Signed-off-by: Jan Lindemann <jan@janware.com>
2025-11-17 11:12:21 +01:00

10 lines
369 B
Python

# -*- coding: utf-8 -*-
from .GrepLog import GrepLog
class PostStartup(GrepLog): # export
def __init__(self, regex = None, log_glob=None, act_timeout=2, total_timeout=None):
if regex is None:
regex = 'done with post-startup start'
super().__init__(regex=regex, log_glob=log_glob, act_timeout=act_timeout, total_timeout=total_timeout)