
Hi Tom,
On Wed, Jun 13, 2018 at 11:43:32AM -0400, Tom Rini wrote:
On Mon, Jun 04, 2018 at 11:47:30AM +0200, Quentin Schulz wrote:
This tests that the importing of an environment with a specified whitelist works as intended.
If there are variables passed as parameter to the env import command, those only should be imported in the current environment.
For each variable passed as parameter, if
- foo is bar in current env and bar2 in exported env, after importing
exported env, foo shall be bar2,
- foo does not exist in current env and foo is bar2 in exported env,
after importing exported env, foo shall be bar2,
- foo is bar in current env and does not exist in exported env (but is
passed as parameter), after importing exported env, foo shall be empty,
Any variable not passed as parameter should be left untouched.
Two other tests are made to test that size cannot be '-' if the checksum protection is enabled.
Signed-off-by: Quentin Schulz quentin.schulz@bootlin.com Reviewed-by: Simon Glass sjg@chromium.org Reviewed-by: Stephen Warren swarren@nvidia.com
This seems to not be working?
I just rebased on top of v2018.07-rc1, ran make mrproper ./test/py/test.py --bd sandbox --build
and the tests run fine until one error in some tests *after* the env test suite has passed. See log: http://code.bulix.org/iojwnp-358559
It's dirty because I had to remove NO_SDL to make sandbox to compile $ git diff diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 1a49d1dab5..a76fc384c2 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -74,10 +74,6 @@ #define CONFIG_BOOTP_SERVERIP #define CONFIG_IP_DEFRAG
-#ifndef SANDBOX_NO_SDL -#define CONFIG_SANDBOX_SDL -#endif - /* LCD and keyboard require SDL support */ #ifdef CONFIG_SANDBOX_SDL #define LCD_BPP LCD_COLOR16
Can I have more info on how to reproduce this error please?
Thanks,
Quentin