summaryrefslogtreecommitdiffstats
path: root/QA
diff options
context:
space:
mode:
Diffstat (limited to 'QA')
-rw-r--r--QA/Makefile.inc9
-rw-r--r--QA/UnitTest/Makefile.inc18
2 files changed, 0 insertions, 27 deletions
diff --git a/QA/Makefile.inc b/QA/Makefile.inc
deleted file mode 100644
index e86005d..0000000
--- a/QA/Makefile.inc
+++ /dev/null
@@ -1,9 +0,0 @@
-ifdef USE_VALGRIND
-# Not enabled: --show-reachable=yes
-TEST_RUNNER=valgrind --suppressions=QA/valgrind.supp -q --leak-check=full --track-origins=yes
-endif
-
-include QA/UnitTest/Makefile.inc
-
-.PHONY: test
-test: $(TEST_TARGETS)
diff --git a/QA/UnitTest/Makefile.inc b/QA/UnitTest/Makefile.inc
deleted file mode 100644
index f51828e..0000000
--- a/QA/UnitTest/Makefile.inc
+++ /dev/null
@@ -1,18 +0,0 @@
-UNITTEST_TARGET = QA/UnitTest/checker
-UNITTEST_SOURCES += \
- QA/UnitTest/checker.cpp
-UNITTEST_OBJECTS = \
- $(UNITTEST_SOURCES:.cpp=.o)
-
-TEST_TARGETS += check
-
-CLEANFILES += $(UNITTEST_TARGET)
-DEPS += $(UNITTEST_SOURCES:.cpp=.dep)
-
-.PHONY: check
-check: $(UNITTEST_TARGET)
- $(TEST_RUNNER) ./$(UNITTEST_TARGET)
-
-$(UNITTEST_TARGET): $(CPPUNIT_TARGET) $(UNITTEST_OBJECTS) $(UNITTEST_LIBS) $(BUNDLED_LIBS)
- $(QUIET_LINK)$(CXX) -o $(UNITTEST_TARGET) $(UNITTEST_OBJECTS) $(LDFLAGS) $(CPPUNIT_TARGET) $(UNITTEST_LIBS) $(BUNDLED_LIBS) $(LIBS)
-