Page MenuHomePhabricator

Fix two issues with repository monogram regular expressions
ClosedPublic

Authored by epriestley on Jan 18 2016, 5:36 PM.
Tags
None
Referenced Files
Unknown Object (File)
Apr 8 2026, 3:17 PM
Unknown Object (File)
Mar 18 2026, 9:04 PM
Unknown Object (File)
Mar 4 2026, 12:30 AM
Unknown Object (File)
Jan 13 2026, 12:08 PM
Unknown Object (File)
Jan 11 2026, 11:49 AM
Unknown Object (File)
Dec 22 2025, 11:36 PM
Unknown Object (File)
Dec 21 2025, 6:25 PM
Unknown Object (File)
Nov 13 2025, 5:47 PM
Subscribers
None

Details

Summary

Ref T4245. Fixes T10172. These regular expressions were simply incorrect: they intend <start> (form one | form two) <end> but were written as (<start> form one) | (form two <end>) which allowed stuff like "R2/R13" to be interpreted as a monogram because it matches (<start> form one).

Test Plan

Parsed commit ba46ffa6169c from RTEMS repository, see T10172. Before patch, got an identical trace; after patch, clean import.

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Fix two issues with repository monogram regular expressions.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: chad.
avivey added a reviewer: avivey.
This revision is now accepted and ready to land.Jan 18 2016, 5:46 PM
This revision was automatically updated to reflect the committed changes.