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_thread.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_thread.py')
| -rw-r--r-- | lldb/test/python_api/default-constructor/sb_thread.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/lldb/test/python_api/default-constructor/sb_thread.py b/lldb/test/python_api/default-constructor/sb_thread.py index 5f342330ebd..b69b22ea6a9 100644 --- a/lldb/test/python_api/default-constructor/sb_thread.py +++ b/lldb/test/python_api/default-constructor/sb_thread.py @@ -34,4 +34,4 @@ def fuzz_obj(obj):      obj.GetDescription(lldb.SBStream())      obj.Clear()      for frame in obj: -        print frame +        s = str(frame) | 

