summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2015-12-10 18:50:49 +0000
committerZachary Turner <zturner@google.com>2015-12-10 18:50:49 +0000
commit3cfa31492cd9add70042d3e73c5fac8d9eb5b378 (patch)
tree8824da4ed9c410ba999a60a4275ff3bb83340fe3 /lldb/packages/Python/lldbsuite/test/dotest.py
parentb08ab7242759d4f539b6bcd33e69133bf83a3933 (diff)
downloadbcm5719-llvm-3cfa31492cd9add70042d3e73c5fac8d9eb5b378.tar.gz
bcm5719-llvm-3cfa31492cd9add70042d3e73c5fac8d9eb5b378.zip
Remove the -T option from dotest.py.
llvm-svn: 255276
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index 14acf3ce7fa..ded6324649c 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -365,9 +365,6 @@ def parseOptionsAndInitTestdirs():
if args.t:
os.environ['LLDB_COMMAND_TRACE'] = 'YES'
- if args.T:
- configuration.svn_silent = False
-
if args.v:
configuration.verbose = 2
@@ -701,16 +698,6 @@ def setupSysPath():
else:
os.environ["LLDBMI_EXEC"] = lldbMiExec
- # Skip printing svn/git information when running in parsable (lit-test compatibility) mode
- if not configuration.svn_silent and not configuration.parsable:
- if os.path.isdir(os.path.join(lldbRootDirectory, '.svn')) and which("svn") is not None:
- pipe = subprocess.Popen([which("svn"), "info", lldbRootDirectory], stdout = subprocess.PIPE)
- configuration.svn_info = pipe.stdout.read()
- elif os.path.isdir(os.path.join(lldbRootDirectory, '.git')) and which("git") is not None:
- pipe = subprocess.Popen([which("git"), "svn", "info", lldbRootDirectory], stdout = subprocess.PIPE)
- configuration.svn_info = pipe.stdout.read()
- print(configuration.svn_info)
-
lldbPythonDir = None # The directory that contains 'lldb/__init__.py'
if configuration.lldbFrameworkPath:
candidatePath = os.path.join(configuration.lldbFrameworkPath, 'Resources', 'Python')
OpenPOWER on IntegriCloud