diff options
author | Adrian McCarthy <amccarth@google.com> | 2016-01-21 21:10:00 +0000 |
---|---|---|
committer | Adrian McCarthy <amccarth@google.com> | 2016-01-21 21:10:00 +0000 |
commit | f0a275e0358911794545810b96c5d160e7bd714f (patch) | |
tree | d78dc6b4d01aeb51d68a88058ba859b0f48e7d37 /lldb/packages/Python/lldbsuite/test | |
parent | 783550be6211b65de45c4c44eac339311f3ae1e2 (diff) | |
download | bcm5719-llvm-f0a275e0358911794545810b96c5d160e7bd714f.tar.gz bcm5719-llvm-f0a275e0358911794545810b96c5d160e7bd714f.zip |
NFC. Corrects name of test class and a comment.
llvm-svn: 258433
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py b/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py index 51e6d4579e2..3158c4c5bcf 100644 --- a/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py +++ b/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py @@ -12,7 +12,7 @@ import lldb from lldbsuite.test.lldbtest import * import lldbsuite.test.lldbutil as lldbutil -class UnsignedTypesTestCase(TestBase): +class SignedTypesTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @@ -48,7 +48,7 @@ class UnsignedTypesTestCase(TestBase): self.expect("breakpoint list -f", BREAKPOINT_HIT_ONCE, substrs = [' resolved, hit count = 1']) - # Execute the assignment statement. + # Execute the puts(). self.runCmd("thread step-over") # Test that signed types display correctly. |