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 736f1fe0fd09f8be34fec37ec8937d1da99732af..be6da4394b4163ff4a3f0929c461a906965ab1de 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 337e83e2bc63706fa007e8e3d3c231865488e9b2..e6e263588307e10f573407e9d8a6794a7c5706b2 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 dbd03bdb1413f762b28023835df4f60015b9da89..17f41165dbf84c6330fec2e2e66bb81b6bc8c027 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);