Home
last modified time | relevance | path

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

/test/vts/utils/python/instrumentation/
Dtest_framework_instrumentation_event.py29 ILLEGAL_CHARS = ':\t\r\n' variable
50 if set(ILLEGAL_CHARS) & set(category + name):
51 category = re.sub('|'.join(ILLEGAL_CHARS), '_', category)
52 name = re.sub('|'.join(ILLEGAL_CHARS), '_', name)
Dtest_framework_instrumentation_test.py38 for name in tfie.ILLEGAL_CHARS: