Skip to content
Snippets Groups Projects
Commit 11318a92 authored by Piotr Balcer's avatar Piotr Balcer
Browse files

test: fix sds support check in pmempool_feature

parent 887f0f3c
No related branches found
No related tags found
No related merge requests found
...@@ -154,8 +154,8 @@ function pmempool_feature_test_SHUTDOWN_STATE() { ...@@ -154,8 +154,8 @@ function pmempool_feature_test_SHUTDOWN_STATE() {
# If SDS is not enabled at this point is because SDS is not available for # If SDS is not enabled at this point is because SDS is not available for
# this device # this device
pmempool_feature_query_return "SHUTDOWN_STATE" ret=$(pmempool_feature_query_return "SHUTDOWN_STATE")
if [[ $? -eq 0 ]]; then if [[ $ret -eq 0 ]]; then
msg "$UNITTEST_NAME: SKIP: SDS is not available" msg "$UNITTEST_NAME: SKIP: SDS is not available"
exit 0 exit 0
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment