commit | 372a15220afd408b0f9101bfbc2c08503cc0d8d9 | [log] [tgz] |
---|---|---|
author | Jimi Chen <jimictw@google.com> | Wed Mar 19 14:38:06 2025 +0000 |
committer | Jimi Chen <jimictw@google.com> | Wed Mar 19 14:38:06 2025 +0000 |
tree | 2d7696f63a0f21944a362c2bf23be79f9c039bcb | |
parent | 8f712c6ed98191ed5a711bc98c3999bbc233a6d2 [diff] |
Skip multi-device tests instead of abort if device is non-B+ devices Test: TH Change-Id: Ib27dea9197d5230313944777abb958f68425b213
diff --git a/staticlibs/testutils/host/python/apf_utils.py b/staticlibs/testutils/host/python/apf_utils.py index 3fee99f..fa8a1da 100644 --- a/staticlibs/testutils/host/python/apf_utils.py +++ b/staticlibs/testutils/host/python/apf_utils.py
@@ -442,7 +442,7 @@ "client device is not B+" ) - asserts.abort_class_if(not self.client.isAtLeastB(), "not B+") + asserts.skip_if(not self.client.isAtLeastB(), "not B+") return test_function(self, *args, **kwargs) return wrapper return decorator