Re: [U-Boot] [PATCH] test/py: capture the entire U-Boot version at boot

2016-02-05 Thread Stephen Warren
On 02/05/2016 05:11 PM, Stephen Warren wrote: From: Stephen Warren The existing regex simply ensures that the captured version string doesn't go past the end of a line. We really want to grab as much as possible. Do this by explicitly including a ) character at the end of the regex to match the

[U-Boot] [PATCH] test/py: capture the entire U-Boot version at boot

2016-02-05 Thread Stephen Warren
From: Stephen Warren The existing regex simply ensures that the captured version string doesn't go past the end of a line. We really want to grab as much as possible. Do this by explicitly including a ) character at the end of the regex to match the last character of the version test. Signed-off