Convert print statements to print function calls.
This patch was generating by running `2to3` on the files in the
lldb/test directory. This patch should be NFC, but it does
introduce the `from __future__ import print_function` line, which
will break future uses of the print statement.
llvm-svn: 250763
diff --git a/lldb/test/dotest_args.py b/lldb/test/dotest_args.py
index 46039e8..4246684 100644
--- a/lldb/test/dotest_args.py
+++ b/lldb/test/dotest_args.py
@@ -1,3 +1,5 @@
+from __future__ import print_function
+
import sys
import multiprocessing
import os
@@ -20,7 +22,7 @@
args = ArgParseNamespace()
if ('LLDB_TEST_ARGUMENTS' in os.environ):
- print "Arguments passed through environment: '%s'" % os.environ['LLDB_TEST_ARGUMENTS']
+ print("Arguments passed through environment: '%s'" % os.environ['LLDB_TEST_ARGUMENTS'])
args = parser.parse_args([sys.argv[0]].__add__(os.environ['LLDB_TEST_ARGUMENTS'].split()),namespace=args)
return parser.parse_args(args=argv, namespace=args)