xfs: Verify correctness of upgrading an fs to support large extent counters
[xfstests-dev.git] / common / test_names
1 ##/bin/bash
2
3 # Valid test names start with 3 digits "NNN":
4 #  "[0-9]\{3\}"
5 # followed by an optional "-":
6 #  "-\?"
7 # followed by an optional combination of alphanumeric and "-" chars:
8 #  "[[:alnum:]-]*"
9 # e.g. 999-the-mark-of-fstests
10 #
11 VALID_TEST_ID="[0-9]\{3\}"
12 VALID_TEST_NAME="$VALID_TEST_ID-\?[[:alnum:]-]*"