[Lldb-commits] [lldb] r115820 - /lldb/trunk/test/settings/TestSettings.py

Johnny Chen johnny.chen at apple.com
Wed Oct 6 12:42:37 PDT 2010


Author: johnny
Date: Wed Oct  6 14:42:37 2010
New Revision: 115820

URL: http://llvm.org/viewvc/llvm-project?rev=115820&view=rev
Log:
Change the expected term-width output string to be a substring instead of a startstring
for the test case test_set_term_width() after the recent changes.

Modified:
    lldb/trunk/test/settings/TestSettings.py

Modified: lldb/trunk/test/settings/TestSettings.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/settings/TestSettings.py?rev=115820&r1=115819&r2=115820&view=diff
==============================================================================
--- lldb/trunk/test/settings/TestSettings.py (original)
+++ lldb/trunk/test/settings/TestSettings.py Wed Oct  6 14:42:37 2010
@@ -45,7 +45,7 @@
 
         # The overall display should also reflect the new setting.
         self.expect("settings show",
-            startstr = "term-width (int) = '70'")
+            substrs = "term-width (int) = '70'")
 
     @unittest2.skipUnless(sys.platform.startswith("darwin"), "requires Darwin")
     def test_with_dsym(self):





More information about the lldb-commits mailing list