Removed debug print statements.

llvm-svn: 106913
This commit is contained in:
Johnny Chen 2010-06-25 23:34:17 +00:00
parent 83651094ad
commit 6d436d63ff
1 changed files with 0 additions and 5 deletions

View File

@ -72,7 +72,6 @@ def setupSysPath():
sys.exit(-1)
sys.path.append(lldbPath)
#print 'sys.path =', sys.path
def initTestdirs():
@ -101,8 +100,6 @@ def initTestdirs():
if len(sys.argv) > index:
testdirs = map(os.path.abspath, sys.argv[index:])
#print "testdirs =", testdirs
def visit(prefix, dir, names):
"""Visitor function for os.path.walk(path, visit, arg)."""
@ -131,6 +128,4 @@ for testdir in testdirs:
os.path.walk(testdir, visit, 'Test')
# Now that we have loaded all the test cases, run the whole test suite.
#print "test suite =", suite
#print "verbose =", verbose
unittest.TextTestRunner(verbosity=verbose).run(suite)