From 022b115bb9652b1ea93a106b53d77a9ef23a00a2 Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Wed, 30 Mar 2005 12:05:24 +0000 Subject: Support commenting out lines in a runtest.py -f file. --- runtest.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/runtest.py b/runtest.py index df97eea..7f36479 100644 --- a/runtest.py +++ b/runtest.py @@ -344,7 +344,10 @@ elif all: keys.sort() tests = map(tdict.get, keys) elif testlistfile: - tests = map(Test, map(lambda x: x[:-1], open(testlistfile, 'r').readlines())) + tests = open(testlistfile, 'r').readlines() + tests = filter(lambda x: x[0] != '#', tests) + tests = map(lambda x: x[:-1], tests) + tests = map(Test, tests) else: sys.stderr.write("""\ runtest.py: No tests were specified on the command line. -- cgit v0.12