From: HyoungJoo Ahn Date: Thu, 19 Mar 2020 07:01:42 +0000 (+0900) Subject: [UTC][TFDF-9341][Machine Learning][Fix the potential failures which is not related... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=39f7b151441bec22f8728e52a3925fe2d31257fd;p=test%2Ftct%2Fnative%2Fapi.git [UTC][TFDF-9341][Machine Learning][Fix the potential failures which is not related the logic] Change-Id: I221b905b0de61bf8a8a60b03dd554dec594604eb Signed-off-by: HyoungJoo Ahn --- diff --git a/src/utc/nnstreamer/utc-nnstreamer-pipeline.c b/src/utc/nnstreamer/utc-nnstreamer-pipeline.c index 953731600..c55bb3af7 100644 --- a/src/utc/nnstreamer/utc-nnstreamer-pipeline.c +++ b/src/utc/nnstreamer/utc-nnstreamer-pipeline.c @@ -178,7 +178,6 @@ int utc_ml_pipeline_start_p (void) status = ml_pipeline_get_state (handle, &state); assert_eq (status, ML_ERROR_NONE); /* At this moment, it can be READY, PAUSED, or PLAYING */ - assert_eq (state, ML_PIPELINE_STATE_PAUSED); assert_neq (state, ML_PIPELINE_STATE_UNKNOWN); assert_neq (state, ML_PIPELINE_STATE_NULL); @@ -267,15 +266,12 @@ int utc_ml_check_nnfw_availability_p (void) IS_SUPPORT_FEATURE; int status = ml_check_nnfw_availability (ML_NNFW_TYPE_NNFW, ML_NNFW_HW_ANY, &result); assert_eq (status, ML_ERROR_NONE); - assert_eq (result, false); status = ml_check_nnfw_availability (ML_NNFW_TYPE_NNFW, ML_NNFW_HW_AUTO, &result); assert_eq (status, ML_ERROR_NONE); - assert_eq (result, false); status = ml_check_nnfw_availability (ML_NNFW_TYPE_NNFW, ML_NNFW_HW_NPU, &result); assert_eq (status, ML_ERROR_NONE); - assert_eq (result, false); return 0; }