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

llvm-svn: 121887
This commit is contained in:
Johnny Chen 2010-12-15 20:11:04 +00:00
parent 949ab7889c
commit 7e0e537597
1 changed files with 6 additions and 1 deletions

View File

@ -13,4 +13,9 @@ blacklist = {'IntegerTypesExprTestCase': 'This test class crashed',
}
"""
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
}