[Lldb-commits] [lldb] r121887 - /lldb/trunk/test/blacklist.py
Johnny Chen
johnny.chen at apple.com
Wed Dec 15 12:11:04 PST 2010
Author: johnny
Date: Wed Dec 15 14:11:04 2010
New Revision: 121887
URL: http://llvm.org/viewvc/llvm-project?rev=121887&view=rev
Log:
Add an entry for test case BasicExprCommandsTestCase.test_evaluate_expression_python,
due to crashes while running the entire test suite with clang-126.
To reproduce:
CC=clang ./dotest.py -v -w 2> ~/Developer/Log/lldbtest.log
To skip this test case:
CC=clang ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log
Modified:
lldb/trunk/test/blacklist.py
Modified: lldb/trunk/test/blacklist.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/blacklist.py?rev=121887&r1=121886&r2=121887&view=diff
==============================================================================
--- lldb/trunk/test/blacklist.py (original)
+++ lldb/trunk/test/blacklist.py Wed Dec 15 14:11:04 2010
@@ -13,4 +13,9 @@
}
"""
-blacklist = {}
+blacklist = {'BasicExprCommandsTestCase.test_evaluate_expression_python': 'Crashed while running the entire test suite with CC=clang'
+ # To reproduce the crash: CC=clang ./dotest.py -v -w 2> ~/Developer/Log/lldbtest.log
+ # The clang version used is clang-126.
+ # Two radars filed for the crashes: rdar://problem/8769826 and rdar://problem/8773329.
+ # To skip this test case: CC=clang ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log
+ }
More information about the lldb-commits
mailing list