1"""
2'blacklist' is a Python dictionary, it stores the mapping of a string describing
3either a testclass or a testcase, i.e, testclass.testmethod, to the reason (a
4string) it is blacklisted.
5
6Following is an example which states that test class IntegerTypesExprTestCase
7should be skipped because 'This test class crashed' and the test case
8FoundationTestCase.test_data_type_and_expr_with_dsym should be skipped because
9it is 'Temporarily disabled'.
10
11blacklist = {'IntegerTypesExprTestCase': 'This test class crashed',
12             'FoundationTestCase.test_data_type_and_expr_with_dsym': 'Temporarily disabled'
13             }
14"""
15
16blacklist = {'STLTestCase': '<rdar://problem/8837118> Crashed while running the entire test suite'
17             # To skip this test case: ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log
18             }
19