Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile27
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index c2581cb..0000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,27 +0,0 @@
-# howto inherit this properly from above?
-# its not an option to configure
-PYTHON=python
-
-all: clean test
-
-test:
- @${PYTHON} runalltests.py
-
-valgrind:
- @echo "Profiling the process. Run kcachegrind on the output"
- valgrind --tool=callgrind --suppressions=valgrind-python.supp ${PYTHON} runalltests.py
-
-profile:
- @find . -name "hotspot*" -exec rm {} \;
- @${PYTHON} ./profilealltests.py
-
-clean:
- @${PYTHON} ./cleaner.py
- @find . -name "*.pyc" -exec rm {} \;
- @find . -name "*~" -exec rm {} \;
- @find . -name "hotspot*" -exec rm {} \;
- @find . -name "callgrind.out*" -exec rm {} \;
-
-tags:
-
-