test: Print out test information
authorInki Dae <inki.dae@samsung.com>
Tue, 3 Mar 2020 00:54:20 +0000 (09:54 +0900)
committerInki Dae <inki.dae@samsung.com>
Tue, 14 Apr 2020 00:42:53 +0000 (09:42 +0900)
Change-Id: Ic95b8093d10b7a782ad56ac86389919b4d1775c7
Signed-off-by: Inki Dae <inki.dae@samsung.com>
test/src/inference_engine_test.cpp

index 602c2fb28cf0a18aa65d8cca3d432a6ef041d865..df8d958c1db129a581cf8b4179a76a76a1b771af 100644 (file)
@@ -50,6 +50,8 @@ TEST_P(InferenceEngineCommonTest, Bind)
 
     std::tie(backend_name, target_devices) = GetParam();
 
+    std::cout <<"Bind test : backend = " << backend_name << ", target device = " << target_devices << "\n";
+
     inference_engine_config config = {
         .backend_name = backend_name,
         .target_devices = target_devices
@@ -174,6 +176,8 @@ TEST_P(InferenceEngineCommonTest_2, Load)
 
     std::tie(backend_name, target_devices, model_paths) = GetParam();
 
+    std::cout <<"Load test : backend = " << backend_name << ", target device = " << target_devices << "\n";
+
     inference_engine_config config = {
         .backend_name = backend_name,
         .target_devices = target_devices
@@ -217,6 +221,8 @@ TEST_P(InferenceEngineCommonTest_3, Inference)
 
     std::tie(backend_name, target_devices, height, width, ch, input_layers, output_layers, model_paths) = GetParam();
 
+    std::cout <<"Inference test : backend = " << backend_name << ", target device = " << target_devices << "\n";
+
     inference_engine_config config = {
         .backend_name = backend_name,
         .target_devices = target_devices