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
F13082671: D15049.diff
Wed, Apr 24, 10:14 PM
Unknown Object (File)
Fri, Apr 19, 4:07 PM
Unknown Object (File)
Fri, Apr 12, 12:23 PM
Unknown Object (File)
Mon, Apr 8, 2:13 PM
Unknown Object (File)
Tue, Apr 2, 3:12 PM
Unknown Object (File)
Fri, Mar 29, 7:53 PM
Unknown Object (File)
Fri, Mar 29, 1:14 PM
Unknown Object (File)
Mar 5 2024, 9:16 AM
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.