mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-devtest
synced 2026-01-16 02:43:32 +01:00
First commit
Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
commit
4b912741cb
73 changed files with 3753 additions and 0 deletions
10
src/python/devtest/os/test/cases/PostStartup.py
Normal file
10
src/python/devtest/os/test/cases/PostStartup.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# -*- 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)
|
||||
Loading…
Add table
Add a link
Reference in a new issue