summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyunsoo Park <hance.park@samsung.com>2020-07-07 16:57:52 +0900
committerHyunsoo Park <hance.park@samsung.com>2020-07-08 09:23:59 +0900
commitf418b67293fd82c7f5619ef32776f7f82537895b (patch)
treedb3f64eca128bbb3016ab37e60dec3728f8c6abf
parent7e63a5ea1e3b32b7f8ebb04f22cd19c92007a20a (diff)
downloadmediavision-f418b67293fd82c7f5619ef32776f7f82537895b.tar.gz
mediavision-f418b67293fd82c7f5619ef32776f7f82537895b.tar.bz2
mediavision-f418b67293fd82c7f5619ef32776f7f82537895b.zip
[testsuite] Remove code block of no usesubmit/tizen/20200805.080420submit/tizen/20200713.035755
Change-Id: Ic3ae378576cdc3af828eff014bff6c76848b0276 Signed-off-by: Hyunsoo Park <hance.park@samsung.com>
-rw-r--r--test/testsuites/inference/inference_test_suite.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/test/testsuites/inference/inference_test_suite.c b/test/testsuites/inference/inference_test_suite.c
index e5f8908c..02c666ee 100644
--- a/test/testsuites/inference/inference_test_suite.c
+++ b/test/testsuites/inference/inference_test_suite.c
@@ -2295,25 +2295,25 @@ int main()
case 1: {
err = perform_image_classification();
if (err != MEDIA_VISION_ERROR_NONE) {
- printf("Fail to perform image classification\n");
+ printf("Fail to perform image classification. ERROR[0x%x]\n", err);
}
} break;
case 2: {
err = perform_object_detection();
if (err != MEDIA_VISION_ERROR_NONE) {
- printf("Fail to perform object detection\n");
+ printf("Fail to perform object detection. ERROR[0x%x]\n", err);
}
} break;
case 3: {
err = perform_face_detection();
if (err != MEDIA_VISION_ERROR_NONE) {
- printf("Fail to perform face detection\n");
+ printf("Fail to perform face detection. ERROR[0x%x]\n", err);
}
} break;
case 4: {
err = perform_facial_landmark_detection();
if (err != MEDIA_VISION_ERROR_NONE) {
- printf("Fail to perform facial landmark detection");
+ printf("Fail to perform facial landmark detection. ERROR[0x%x]\n", err);
}
break;
}
@@ -2327,9 +2327,6 @@ int main()
}
int do_another = 0;
- if (err != MEDIA_VISION_ERROR_NONE) {
- printf("ERROR: Action is finished with error code: %i\n");
- }
sel_opt = 0;
const int options_last[] = { 1, 2 };