[Fix] upstream build fail
authorJihoon Lee <jhoon.it.lee@samsung.com>
Wed, 15 Sep 2021 07:29:34 +0000 (16:29 +0900)
committerJijoong Moon <jijoong.moon@samsung.com>
Wed, 15 Sep 2021 08:29:27 +0000 (17:29 +0900)
This patch fixes upstream build fail from overlapping test suite name

**Self evaluation:**
1. Build test: [X]Passed [ ]Failed [ ]Skipped
2. Run test: [X]Passed [ ]Failed [ ]Skipped

Signed-off-by: Jihoon Lee <jhoon.it.lee@samsung.com>
test/unittest/layers/meson.build
test/unittest/layers/unittest_layers_preprocess_flip.cpp
test/unittest/layers/unittest_layers_preprocess_translate.cpp

index aad326f..04cb8bc 100644 (file)
@@ -69,8 +69,6 @@ exe = executable(
   'unittest_layers', test_target,
   dependencies: [
     nntrainer_test_main_deps,
-    nntrainer_layer_common_standalone_tests_dep,
-    nntrainer_layer_common_dependent_tests_dep
   ],
   install: get_option('enable-test'),
   install_dir: application_install_dir
index c82c629..86ab1c9 100644 (file)
@@ -20,5 +20,5 @@ auto semantic_flip = LayerSemanticsParamType(
   nntrainer::createLayer<nntrainer::PreprocessFlipLayer>,
   nntrainer::PreprocessFlipLayer::type, {}, 0, false);
 
-INSTANTIATE_TEST_CASE_P(Preprocess, LayerSemantics,
+INSTANTIATE_TEST_CASE_P(PreprocessFlip, LayerSemantics,
                         ::testing::Values(semantic_flip));
index 611c4df..1b3eacd 100644 (file)
@@ -21,5 +21,5 @@ auto semantic_translate = LayerSemanticsParamType(
   nntrainer::PreprocessTranslateLayer::type, {"random_translate=0.1"}, 0,
   false);
 
-INSTANTIATE_TEST_CASE_P(Preprocess, LayerSemantics,
+INSTANTIATE_TEST_CASE_P(PreprocessTranslate, LayerSemantics,
                         ::testing::Values(semantic_translate));