[dpdk-dev] devtools: fix symbol change file matching

2019-07-10 Thread Bing Zhao
The previous regex miss a situation that a new file is added after the map file. It will starts with '/dev/null' instead of 'a /', so all the content in the patch file after 'map' will be considered in the symbol map file. Also, a second regex matching is used for map and other files, the '^map' in

Re: [dpdk-dev] devtools: fix symbol change file matching

2019-07-10 Thread Neil Horman
On Wed, Jul 10, 2019 at 05:57:14PM +0800, Bing Zhao wrote: > The previous regex miss a situation that a new file is added after > the map file. It will starts with '/dev/null' instead of 'a /', so > all the content in the patch file after 'map' will be considered in > the symbol map file. Also, a s