aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-06-11 21:04:30 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-06-11 21:30:22 +0200
commit9029ebde3b624c52a3cca516a8b055e1cebb0ffa (patch)
tree5e32c699277f1016ebce1482fe43ef659abd0d2a /tests
parent362af2683310518720df7309291a76ef3a170bde (diff)
downloadnextpnr-9029ebde3b624c52a3cca516a8b055e1cebb0ffa.tar.gz
nextpnr-9029ebde3b624c52a3cca516a8b055e1cebb0ffa.tar.bz2
nextpnr-9029ebde3b624c52a3cca516a8b055e1cebb0ffa.zip
Added dummy tests per arch
Diffstat (limited to 'tests')
-rw-r--r--tests/dummy/main.cpp18
-rw-r--r--tests/ice40/main.cpp18
2 files changed, 36 insertions, 0 deletions
diff --git a/tests/dummy/main.cpp b/tests/dummy/main.cpp
new file mode 100644
index 00000000..b8d22138
--- /dev/null
+++ b/tests/dummy/main.cpp
@@ -0,0 +1,18 @@
+#include "gtest/gtest.h"
+
+#include <vector>
+
+int main(int argc, char **argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
+
+TEST(example, sum_zero) {
+ auto result = 0;
+ ASSERT_EQ(result, 0);
+}
+
+TEST(example, sum_five) {
+ auto result = 15;
+ ASSERT_EQ(result, 15);
+}
diff --git a/tests/ice40/main.cpp b/tests/ice40/main.cpp
new file mode 100644
index 00000000..b8d22138
--- /dev/null
+++ b/tests/ice40/main.cpp
@@ -0,0 +1,18 @@
+#include "gtest/gtest.h"
+
+#include <vector>
+
+int main(int argc, char **argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
+
+TEST(example, sum_zero) {
+ auto result = 0;
+ ASSERT_EQ(result, 0);
+}
+
+TEST(example, sum_five) {
+ auto result = 15;
+ ASSERT_EQ(result, 15);
+}