summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/dotest.py
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-08-27 18:18:46 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-08-27 18:18:46 +0000
commit2d247359cc399d283ae00c6b869ee05617f36e2b (patch)
tree004105e01b12a12fdbe1c1790ac0b0c331d1066b /lldb/packages/Python/lldbsuite/test/dotest.py
parentff07631b481ee2396aa1bbaadefcbd537d787b08 (diff)
downloadbcm5719-llvm-2d247359cc399d283ae00c6b869ee05617f36e2b.tar.gz
bcm5719-llvm-2d247359cc399d283ae00c6b869ee05617f36e2b.zip
[dotest] Remove results port
The results port was used by dosep.py to deal with test results coming form different processes. With dosep.py gone, I don't think we need this any longer. Differential revision: https://reviews.llvm.org/D66811 llvm-svn: 370090
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/dotest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/dotest.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/dotest.py b/lldb/packages/Python/lldbsuite/test/dotest.py
index c27b2c18330..4724b8ea9a2 100644
--- a/lldb/packages/Python/lldbsuite/test/dotest.py
+++ b/lldb/packages/Python/lldbsuite/test/dotest.py
@@ -429,15 +429,6 @@ def parseOptionsAndInitTestdirs():
if args.results_file:
configuration.results_filename = args.results_file
- if args.results_port:
- configuration.results_port = args.results_port
-
- if args.results_file and args.results_port:
- sys.stderr.write(
- "only one of --results-file and --results-port should "
- "be specified\n")
- usage(args)
-
if args.results_formatter:
configuration.results_formatter_name = args.results_formatter
if args.results_formatter_options:
@@ -516,7 +507,6 @@ def setupTestResults():
formatter_config.formatter_name = configuration.results_formatter_name
formatter_config.formatter_options = (
configuration.results_formatter_options)
- formatter_config.port = configuration.results_port
# Create the results formatter.
formatter_spec = formatter.create_results_formatter(
OpenPOWER on IntegriCloud