[Lldb-commits] [lldb] r137696 - /lldb/trunk/test/lldbtest.py
Johnny Chen
johnny.chen at apple.com
Mon Aug 15 17:48:58 PDT 2011
Author: johnny
Date: Mon Aug 15 19:48:58 2011
New Revision: 137696
URL: http://llvm.org/viewvc/llvm-project?rev=137696&view=rev
Log:
Forgot to initialize the self.__skipped__ attribute lldbtest.Base.
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=137696&r1=137695&r2=137696&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Mon Aug 15 19:48:58 2011
@@ -518,6 +518,8 @@
self.__expected__ = False
# We are also interested in unexpected success.
self.__unexpected__ = False
+ # And skipped tests.
+ self.__skipped__ = False
# See addTearDownHook(self, hook) which allows the client to add a hook
# function to be run during tearDown() time.
More information about the lldb-commits
mailing list