Use correct test namespace (#390)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Wed, 27 Jun 2018 06:46:54 +0000 (15:46 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Wed, 27 Jun 2018 06:46:54 +0000 (15:46 +0900)
This commit fixes multiple reference issues inside nncc_core_test

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
libs/core/src/ADT/kernel/Layout.test.cpp

index 7e788c0..88d7867 100644 (file)
@@ -8,14 +8,14 @@ using nncc::core::ADT::kernel::Layout;
 static uint32_t offset_0(const Shape &, uint32_t, uint32_t, uint32_t, uint32_t) { return 0; }
 static uint32_t offset_1(const Shape &, uint32_t, uint32_t, uint32_t, uint32_t) { return 1; }
 
-TEST(ADT_FEATURE_LAYOUT, ctor)
+TEST(ADT_KERNEL_LAYOUT, ctor)
 {
   Layout l{offset_0};
 
   ASSERT_EQ(l.offset(Shape{4, 3, 6, 5}, 1, 1, 1, 1), 0);
 }
 
-TEST(ADT_FEATURE_LAYOUT, copy)
+TEST(ADT_KERNEL_LAYOUT, copy)
 {
   Layout orig{offset_0};
   Layout copy{offset_1};
@@ -27,7 +27,7 @@ TEST(ADT_FEATURE_LAYOUT, copy)
   ASSERT_EQ(copy.offset(Shape{4, 3, 6, 5}, 1, 1, 1, 1), 0);
 }
 
-TEST(ADT_FEATURE_LAYOUT, move)
+TEST(ADT_KERNEL_LAYOUT, move)
 {
   Layout orig{offset_0};
   Layout move{offset_1};