summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lldb/README.txt7
-rw-r--r--tests/lldb/config.py4
2 files changed, 5 insertions, 6 deletions
diff --git a/tests/lldb/README.txt b/tests/lldb/README.txt
index 4631f9c8..9c07494d 100644
--- a/tests/lldb/README.txt
+++ b/tests/lldb/README.txt
@@ -100,11 +100,10 @@ Running the test suite:
Path to the lldb-server executable on host (if using
-run-emu).
--log-file-path LOG_FILE_PATH
- The path to the folder where the log file will be
- placed.
+ The path to the file where the log will be written.
--results-file-path RESULTS_FILE_PATH
- Output folder where junit results.xml file will be
- placed.
+ The path to the file where junit results.xml will be
+ written.
--timeout TIMEOUT Timeout period for a single command, expressed in
seconds
diff --git a/tests/lldb/config.py b/tests/lldb/config.py
index 31fa29fa..a72b80b7 100644
--- a/tests/lldb/config.py
+++ b/tests/lldb/config.py
@@ -68,12 +68,12 @@ class Config(object):
@property
def log_file_path(self):
- '''The path to the folder where the log file will be placed.'''
+ '''The path to the file where the log will be written.'''
return os.path.join(os.getcwd(), 'LLDBTestsuiteLog.txt')
@property
def results_file_path(self):
- '''Output folder where junit results.xml file will be placed.'''
+ '''The path to the file where junit results.xml will be written.'''
return os.path.join(os.getcwd(), 'results.xml')
@property