6d07d63d | 15-Nov-2018 |
Simon Glass <sjg@chromium.org> |
sandbox: Drop the deprecated 'sb' command
The old 'sb' command was deprecated in 2015 and replaced with 'host'. Remove the remaining users and the command, so that the name is available for other pu
sandbox: Drop the deprecated 'sb' command
The old 'sb' command was deprecated in 2015 and replaced with 'host'. Remove the remaining users and the command, so that the name is available for other purposes.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
20d44401 | 15-Nov-2018 |
Simon Glass <sjg@chromium.org> |
test/py: Add a way to pass flags to sandbox
It is sometimes useful to restart sandbox with some particular flags to test certain functionality. Add a new method to ConsoleSandbox to handle this, wit
test/py: Add a way to pass flags to sandbox
It is sometimes useful to restart sandbox with some particular flags to test certain functionality. Add a new method to ConsoleSandbox to handle this, without changing the existing APIs.
Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
cdd140af | 01-Oct-2018 |
Simon Glass <sjg@chromium.org> |
log: Add helpers for common log levels
At present to output a log message you need something like:
log(UCLASS_SPI, LOCL_INFO, "message1"); log(UCLASS_SPI, LOCL_INFO, "message2");
but many fi
log: Add helpers for common log levels
At present to output a log message you need something like:
log(UCLASS_SPI, LOCL_INFO, "message1"); log(UCLASS_SPI, LOCL_INFO, "message2");
but many files use the same category throughout. Also it is helpful to shorten the length of log names, providing helpers for common logging levels. Add some macros so that it is possible to do:
(top of file, before #includes) #define LOG_CATEGORY UCLASS_SPI
(later in the file) log_info("message1"); log_debug("message2"); log_err("message3");
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
c906f372 | 27-Sep-2018 |
Akashi Takahiro <takahiro.akashi@linaro.org> |
test/py: test_fs: add docstring comments to helper functions
After Siomon's comment, add a descriptive comment (docstring) to each of helper functions in conftest.py. No functionality changed.
Sign
test/py: test_fs: add docstring comments to helper functions
After Siomon's comment, add a descriptive comment (docstring) to each of helper functions in conftest.py. No functionality changed.
Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|
e4040df5 | 27-Sep-2018 |
Akashi Takahiro <takahiro.akashi@linaro.org> |
test/py: test_fs: remove fs_type argument from umount_fs()
Since there is no use of fs_type in umount_fs(), just remove it.
Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org> Reviewed-by:
test/py: test_fs: remove fs_type argument from umount_fs()
Since there is no use of fs_type in umount_fs(), just remove it.
Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|