[Lldb-commits] [lldb] r258433 - NFC. Corrects name of test class and a comment.
Adrian McCarthy via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 21 13:10:00 PST 2016
Author: amccarth
Date: Thu Jan 21 15:10:00 2016
New Revision: 258433
URL: http://llvm.org/viewvc/llvm-project?rev=258433&view=rev
Log:
NFC. Corrects name of test class and a comment.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py?rev=258433&r1=258432&r2=258433&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py Thu Jan 21 15:10:00 2016
@@ -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.
More information about the lldb-commits
mailing list