| 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 ...
|
| 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 ...
|
| cce289a9 | 11-Sep-2018 |
Akashi, Takahiro <takahiro.akashi@linaro.org> |
test/py: fs: add fstest/unlink test
In this commit, test cases for unlink interfaces are added as part of "test_fs" test suite.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-of
test/py: fs: add fstest/unlink test
In this commit, test cases for unlink interfaces are added as part of "test_fs" test suite.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|
| 50ca19cc | 11-Sep-2018 |
AKASHI Takahiro <takahiro.akashi@linaro.org> |
test/py: fs: add fstest/mkdir test
In this commit, test cases for mkdir interfaces are added as part of "test_fs" test suite.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-off-
test/py: fs: add fstest/mkdir test
In this commit, test cases for mkdir interfaces are added as part of "test_fs" test suite.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|
| 71f27af5 | 11-Sep-2018 |
AKASHI Takahiro <takahiro.akashi@linaro.org> |
test/py: fs: add extended write operation test
In this commit and the following, test scripts for new filesystem functionalities introduced by my patch set, "fs: fat: extend FAT write operations," a
test/py: fs: add extended write operation test
In this commit and the following, test scripts for new filesystem functionalities introduced by my patch set, "fs: fat: extend FAT write operations," are provided.
In particular, this patch adds test cases for sub-directory write and write with non-zero offset.
Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-off-by: Alexander Graf <agraf@suse.de>
show more ...
|