Re: [U-Boot] [PATCH v6 1/6] env: add the same prefix to error messages to make it detectable by tests

2018-07-09 Thread Quentin Schulz
Hi all, This series was tested with Travis: https://travis-ci.org/QSchulz/u-boot/builds/401644733 I can't explain why 45, 46 and 49 are failing but they have the following error message: The command "sudo apt-get install libisl15 -y" failed and exited with 100 during . It's unrelated to this pa

[U-Boot] [PATCH v6 1/6] env: add the same prefix to error messages to make it detectable by tests

2018-07-09 Thread Quentin Schulz
The error message should start with `## Error: ` so that it's easily detectable by tests without needing to have a complex regexp for matching all possible error message patterns. Let's add the `## Error: ` prefix to the error messages since it's the one already in use. Suggested-by: Stephen Warr