aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2023-07-03 08:35:09 -0500
committerTom Rini <trini@konsulko.com>2023-07-17 15:39:55 -0400
commit8900ba1ad7cbe5ad143c39635e93f7c3b1d41460 (patch)
tree202341498cd6d9d04fcef6ee3729d1d54e9c344c /test
parent22cdb3f0f174e926071975cdc5157aa6526b67a7 (diff)
downloadu-boot-8900ba1ad7cbe5ad143c39635e93f7c3b1d41460.zip
u-boot-8900ba1ad7cbe5ad143c39635e93f7c3b1d41460.tar.gz
u-boot-8900ba1ad7cbe5ad143c39635e93f7c3b1d41460.tar.bz2
tests: Fix exception when cleaning up skipped test
If test_cat and test_xxd cannot create the required file, the test will be skipped, but this would result in an exception being raised in the finally block because the file didn't exist to be cleaned up. This caused the test to be marked as failed instead of skipped. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test')
-rw-r--r--test/py/tests/test_cat/conftest.py3
-rw-r--r--test/py/tests/test_xxd/conftest.py3
2 files changed, 4 insertions, 2 deletions
diff --git a/test/py/tests/test_cat/conftest.py b/test/py/tests/test_cat/conftest.py
index fc396f5..320e7eb 100644
--- a/test/py/tests/test_cat/conftest.py
+++ b/test/py/tests/test_cat/conftest.py
@@ -32,4 +32,5 @@ def cat_data(u_boot_config):
pytest.skip('Setup failed')
finally:
shutil.rmtree(mnt_point)
- os.remove(image_path)
+ if os.path.exists(image_path):
+ os.remove(image_path)
diff --git a/test/py/tests/test_xxd/conftest.py b/test/py/tests/test_xxd/conftest.py
index f35b8f1..47c7cce 100644
--- a/test/py/tests/test_xxd/conftest.py
+++ b/test/py/tests/test_xxd/conftest.py
@@ -32,4 +32,5 @@ def xxd_data(u_boot_config):
pytest.skip('Setup failed')
finally:
shutil.rmtree(mnt_point)
- os.remove(image_path)
+ if os.path.exists(image_path):
+ os.remove(image_path)