RESOLVED FIXED 175809
Make generate_offset_extractor.rb architectures argument more robust
https://bugs.webkit.org/show_bug.cgi?id=175809
Summary Make generate_offset_extractor.rb architectures argument more robust
Keith Miller
Reported 2017-08-21 19:57:13 PDT
Make generate_offset_extractor.rb architetures argument more robust
Attachments
Patch (1.69 KB, patch)
2017-08-21 19:59 PDT, Keith Miller
joepeck: review+
Keith Miller
Comment 1 2017-08-21 19:59:23 PDT
Joseph Pecoraro
Comment 2 2017-08-21 20:04:16 PDT
Comment on attachment 318726 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=318726&action=review > Source/JavaScriptCore/ChangeLog:3 > + Make generate_offset_extractor.rb architetures argument more robust Typo in bug name: architetures > Source/JavaScriptCore/offlineasm/generate_offset_extractor.rb:42 > -validBackends = canonicalizeBackendNames(ARGV.shift.split(",")) > +validBackends = canonicalizeBackendNames(ARGV.shift.split(/,+\s*|\s+/)) How about: /[,\s]+/ This to require any combination of spaces and commas. Your regex supports leading commands and trailing whitespace but not emptiness in-between, which seems weird.
Keith Miller
Comment 3 2017-08-21 20:06:57 PDT
Comment on attachment 318726 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=318726&action=review >> Source/JavaScriptCore/ChangeLog:3 >> + Make generate_offset_extractor.rb architetures argument more robust > > Typo in bug name: architetures Whoops fixed. >> Source/JavaScriptCore/offlineasm/generate_offset_extractor.rb:42 >> +validBackends = canonicalizeBackendNames(ARGV.shift.split(/,+\s*|\s+/)) > > How about: > > /[,\s]+/ > > This to require any combination of spaces and commas. Your regex supports leading commands and trailing whitespace but not emptiness in-between, which seems weird. Yeah, that's a better Regex! I'll change.
Keith Miller
Comment 4 2017-08-21 20:19:55 PDT
Radar WebKit Bug Importer
Comment 5 2017-08-21 20:20:57 PDT
Note You need to log in before you can comment on or make changes to this bug.