summaryrefslogtreecommitdiff
path: root/compiler/loco/src/Service/GraphBuilder.test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/loco/src/Service/GraphBuilder.test.cpp')
-rw-r--r--compiler/loco/src/Service/GraphBuilder.test.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/compiler/loco/src/Service/GraphBuilder.test.cpp b/compiler/loco/src/Service/GraphBuilder.test.cpp
new file mode 100644
index 000000000..7b2ea5198
--- /dev/null
+++ b/compiler/loco/src/Service/GraphBuilder.test.cpp
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include "GraphBuilder.h"
+
+#include "loco/IR/Nodes.h"
+#include "loco/IR/CanonicalDialect.h"
+#include "loco/IR/CanonicalOpcode.h"
+
+#include <gtest/gtest.h>
+
+TEST(GraphBuilderTest, Usecase_000)
+{
+ struct SampleLayer final
+ {
+ loco::Node *operator()(GraphBuilder::Context *ctx)
+ {
+ auto node = ctx->graph()->nodes()->create<loco::ConstGen>();
+ ctx->stack()->push(node);
+ return node;
+ }
+ };
+
+ auto g = loco::make_graph();
+ auto gbuilder = make_graph_builder(g.get());
+
+ gbuilder->push<SampleLayer>();
+
+ auto node = gbuilder->pop();
+
+ ASSERT_EQ(g->nodes()->size(), 1);
+ ASSERT_EQ(node->dialect(), loco::CanonicalDialect::get());
+ ASSERT_EQ(node->opnum(), static_cast<uint32_t>(loco::CanonicalOpcode::ConstGen));
+}