aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dummy
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2018-06-12 20:39:20 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2018-06-12 20:39:20 +0200
commitb7c747f15bcad48f4e1b82704bc9d00c28b9d62d (patch)
treec8113d93b00d5661b76096e7a2859f5af8605ebc /tests/dummy
parent9953012154f18ea51ff9216529089715ba79fb41 (diff)
downloadnextpnr-b7c747f15bcad48f4e1b82704bc9d00c28b9d62d.tar.gz
nextpnr-b7c747f15bcad48f4e1b82704bc9d00c28b9d62d.tar.bz2
nextpnr-b7c747f15bcad48f4e1b82704bc9d00c28b9d62d.zip
Write tests to replace -test option from main
Diffstat (limited to 'tests/dummy')
-rw-r--r--tests/dummy/main.cc (renamed from tests/dummy/main.cpp)10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/dummy/main.cpp b/tests/dummy/main.cc
index b8d22138..13f071ce 100644
--- a/tests/dummy/main.cpp
+++ b/tests/dummy/main.cc
@@ -6,13 +6,3 @@ 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);
-}