blob: 063bb93593bd554d08fa7b819545695bfe46b7df [file] [log] [blame]
Johnny Chen82e6b1e2010-12-01 22:47:54 +00001"""
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
Jim Ingham77ee3932011-08-03 17:41:28 +000016blacklist = {'STLTestCase': '<rdar://problem/8837118> Crashed while running the entire test suite'
Johnny Chen80ef64d2011-01-08 01:37:33 +000017 # To skip this test case: ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log
Johnny Chenba23f582010-12-15 20:11:04 +000018 }