diff options
| author | Richard Mitton <richard@codersnotes.com> | 2013-09-25 20:48:03 +0000 | 
|---|---|---|
| committer | Richard Mitton <richard@codersnotes.com> | 2013-09-25 20:48:03 +0000 | 
| commit | 0d401206151183cc39ec5795075aacb4f1b645ba (patch) | |
| tree | 0dfe5243d4b03ac042b53c97b7d355f6a5b0e256 /lldb/test/python_api/default-constructor/sb_process.py | |
| parent | d36c8d23a5c9e27d40bac56c4b59e5ca9f29ffe3 (diff) | |
| download | bcm5719-llvm-0d401206151183cc39ec5795075aacb4f1b645ba.tar.gz bcm5719-llvm-0d401206151183cc39ec5795075aacb4f1b645ba.zip | |
Changed fuzz tests to not print their values (we only need to test if access to them does not crash).
This fixes the 'No value' string appearing in the dotest results.
llvm-svn: 191399
Diffstat (limited to 'lldb/test/python_api/default-constructor/sb_process.py')
| -rw-r--r-- | lldb/test/python_api/default-constructor/sb_process.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lldb/test/python_api/default-constructor/sb_process.py b/lldb/test/python_api/default-constructor/sb_process.py index 38ee86f1ec7..40132b19958 100644 --- a/lldb/test/python_api/default-constructor/sb_process.py +++ b/lldb/test/python_api/default-constructor/sb_process.py @@ -46,4 +46,4 @@ def fuzz_obj(obj):      obj.Clear()      obj.GetNumSupportedHardwareWatchpoints(error)      for thread in obj: -        print thread +        s = str(thread) | 

