From: Brian Warner <warner@lothar.com>
Date: Fri, 9 Mar 2007 01:12:24 +0000 (-0700)
Subject: start work on a memory-measuring test tool
X-Git-Url: https://git.rkrishnan.org/pf/content/banana.xhtml?a=commitdiff_plain;h=1e25c9e8977da6584c1e65ae21e0b102b9ba9dae;p=tahoe-lafs%2Ftahoe-lafs.git

start work on a memory-measuring test tool
---

diff --git a/Makefile b/Makefile
index c1742b4c..c282b6bf 100644
--- a/Makefile
+++ b/Makefile
@@ -93,6 +93,9 @@ count-lines:
 	@echo -n "TODO: "
 	@grep TODO `find src -name '*.py' |grep -v /build/` | wc --lines
 
+check-memory:
+	$(PP) $(PYTHON) src/allmydata/test/check_memory.py
+
 clean: clean-pyfec clean-Crypto
 	rm -rf build
 	rm -f debian
diff --git a/src/allmydata/test/check_memory.py b/src/allmydata/test/check_memory.py
new file mode 100644
index 00000000..64a4b025
--- /dev/null
+++ b/src/allmydata/test/check_memory.py
@@ -0,0 +1,3 @@
+#! /usr/bin/python
+
+print "not implemented yet"