aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/dummy.cpp5
-rw-r--r--test/makefile7
2 files changed, 1 insertions, 11 deletions
diff --git a/test/dummy.cpp b/test/dummy.cpp
index 08850b2..a00a9c6 100644
--- a/test/dummy.cpp
+++ b/test/dummy.cpp
@@ -1,6 +1,3 @@
#include <gtest/gtest.h>
-TEST(dummy, foo) {
- ASSERT_TRUE(1);
-}
-
+TEST(dummy, foo) { ASSERT_TRUE(1); }
diff --git a/test/makefile b/test/makefile
deleted file mode 100644
index 7aeee34..0000000
--- a/test/makefile
+++ /dev/null
@@ -1,7 +0,0 @@
-TARGET = $(BUILD_DIR)/test
-
-include ../lazy.mk
-
-test: $(TARGET) FORCE
- $(TARGET)
-