From 3e255260ee32bf885fdce51ceceb6582cca65f95 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Wed, 27 Jun 2018 15:46:54 +0900 Subject: [PATCH] Use correct test namespace (#390) This commit fixes multiple reference issues inside nncc_core_test Signed-off-by: Jonghyun Park --- libs/core/src/ADT/kernel/Layout.test.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libs/core/src/ADT/kernel/Layout.test.cpp b/libs/core/src/ADT/kernel/Layout.test.cpp index 7e788c0..88d7867 100644 --- a/libs/core/src/ADT/kernel/Layout.test.cpp +++ b/libs/core/src/ADT/kernel/Layout.test.cpp @@ -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}; -- 2.7.4