summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Eubanks <aeubanks@google.com>2017-07-15 01:04:06 +0000
committerandroid-build-merger <android-build-merger@google.com>2017-07-15 01:04:06 +0000
commitfa28078c117107b652a55ea84f5b406e0c471c28 (patch)
tree76dc3f5a4ba39566327ac9bdd0d0129c574e9a33
parent2a93c1b92e2dc2253cf39111dacb505c15150f1b (diff)
parenta0a086710726006d91e20a639a1046230c8e5a6d (diff)
downloadrs-fa28078c117107b652a55ea84f5b406e0c471c28.tar.gz
Merge "Fix documentation on log file flags"
am: a0a0867107 Change-Id: If8ac26d9f027ba64547ef117ccf9be0ad3a47dac
-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