jtreg-7.3.1+1 is not allowed due to last `?` resolving to [0..1] occurances.
jtreg(?:4\.1-b[0-9]{2}|5\.[01]-b[0-9]{2}|6|-[6789](?:\.[0-9]+)?\+[0-9]+)
The `?` should be changed to `*` to allow [0..n] occurances:
jtreg(?:4\.1-b[0-9]{2}|5\.[01]-b[0-9]{2}|6|-[6789](?:\.[0-9]+)*\+[0-9]+)
jtreg(?:4\.1-b[0-9]{2}|5\.[01]-b[0-9]{2}|6|-[6789](?:\.[0-9]+)?\+[0-9]+)
The `?` should be changed to `*` to allow [0..n] occurances:
jtreg(?:4\.1-b[0-9]{2}|5\.[01]-b[0-9]{2}|6|-[6789](?:\.[0-9]+)*\+[0-9]+)
- relates to
-
CODETOOLS-7903453 Fix regex for tags in jtreg jcheck.conf
- Resolved