Home
last modified time | relevance | path

Searched refs:__PATTERN_LOG_LINE (Results 1 – 1 of 1) sorted by relevance

/openthread-latest/tools/otci/otci/
Dcommand_handlers.py92 __PATTERN_LOG_LINE = re.compile(r'((\[(NONE|CRIT|WARN|NOTE|INFO|DEBG)\])' variable in OtCliCommandRunner
98 assert __PATTERN_LOG_LINE.match('[I] ChannelMonitor: debug log')
99 assert __PATTERN_LOG_LINE.match('[I] Mac-----------: info log')
100 assert __PATTERN_LOG_LINE.match('[N] MeshForwarder-: note log')
101 assert __PATTERN_LOG_LINE.match('[W] Notifier------: warn log')
102 assert __PATTERN_LOG_LINE.match('[C] Mle-----------: critical log')
103 assert __PATTERN_LOG_LINE.match('[-] Settings------: none log')
104 …assert not __PATTERN_LOG_LINE.match('[-] Settings-----: none log') # not enough `-` after module …
224 if not OtCliCommandRunner.__PATTERN_LOG_LINE.match(line):