test: fix a type 64/245164/1
authorInki Dae <inki.dae@samsung.com>
Mon, 5 Oct 2020 05:09:10 +0000 (14:09 +0900)
committerInki Dae <inki.dae@samsung.com>
Mon, 5 Oct 2020 05:09:10 +0000 (14:09 +0900)
Change-Id: Ia3ced406afc99243457377cde2459e13198f7d58
Signed-off-by: Inki Dae <inki.dae@samsung.com>
test/src/inference_engine_profiler.cpp
test/src/inference_engine_tc.cpp
test/src/inference_engine_test_common.h

index 736f1fe..be6da43 100644 (file)
@@ -72,7 +72,7 @@ TEST_P(InferenceEngineTfliteTest, Inference)
        }
 
        // If current machine doesn't support inference engine then skip this test.
-       if (Cap->avaliable == false) {
+       if (Cap->available == false) {
                return;
        }
 
@@ -267,7 +267,7 @@ TEST_P(InferenceEngineCaffeTest, Inference)
        }
 
        // If current machine doesn't support inference engine then skip this test.
-       if (Cap->avaliable == false) {
+       if (Cap->available == false) {
                return;
        }
 
@@ -464,7 +464,7 @@ TEST_P(InferenceEngineDldtTest, Inference)
        }
 
        // If current machine doesn't support inference engine then skip this test.
-       if (Cap->avaliable == false) {
+       if (Cap->available == false) {
                return;
        }
 
index 337e83e..e6e2635 100644 (file)
@@ -533,7 +533,7 @@ TEST_P(InferenceEngineTestCase_G6, Inference_P)
        }
 
        // If current machine doesn't support inference engine then skip this test.
-       if (Cap->avaliable == false) {
+       if (Cap->available == false) {
                return;
        }
 
index dbd03bd..17f4116 100644 (file)
@@ -47,7 +47,7 @@ enum {
 };
 
 typedef struct _MachineCapacity {
-       bool avaliable;
+       bool available;
        bool has_gpu;
        bool has_npu;
        // TODO.
@@ -84,4 +84,4 @@ int VerifyFacialLandmarkDetectionResults(tensor_t &outputData,
                                                                                 int width);
 
 int VerifyPoseEstimationResults(tensor_t &outputData, std::vector<int> &answers,
-                                                               int height, int width);
\ No newline at end of file
+                                                               int height, int width);