]> git.dujemihanovic.xyz Git - u-boot.git/commit
test/py/tests/test_bootstage.py: Combine stash/unstash tests
authorTom Rini <trini@konsulko.com>
Wed, 28 Aug 2024 22:56:10 +0000 (16:56 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 24 Sep 2024 16:10:18 +0000 (10:10 -0600)
commit8a5ef6effbccf7eea28aea286cfbf7bb2b23bbd0
tree71fa5a794cfe1a89cc4368ecd1e8f1aae08fb86f
parentab507411216f59171fd853e0d77c7943c1d391e4
test/py/tests/test_bootstage.py: Combine stash/unstash tests

When running the bootstage tests currently we get a warning like:
tests/test_bootstage.py::test_bootstage_stash
...PytestReturnNotNoneWarning: Expected None, but tests/test_bootstage.py::test_bootstage_stash returned (37748736, 4096), which will be an error in a future version of pytest.  Did you mean to use `assert` in stead of `return`?

This is because the unstash test will run the stash test and fetch the
addr / size from that. Rework the test to be stash and unstash and then
run the unstash command at the end of the current stash test.

Acked-by: Michal Simek <michal.simek@amd.com>
Reviewed-by: Love Kumar <love.kumar@amd.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
test/py/tests/test_bootstage.py