summaryrefslogtreecommitdiff
path: root/common/test_names
blob: 98af40cdbd85c90e46a36d0b6dd5c2a0726383c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
##/bin/bash

# Valid test names start with 3 digits "NNN":
#  "[0-9]\{3\}"
# followed by an optional "-":
#  "-\?"
# followed by an optional combination of alphanumeric and "-" chars:
#  "[[:alnum:]-]*"
# e.g. 999-the-mark-of-fstests
#
VALID_TEST_ID="[0-9]\{3\}"
VALID_TEST_NAME="$VALID_TEST_ID-\?[[:alnum:]-]*"