Johnny Chen | 82e6b1e | 2010-12-01 22:47:54 +0000 | [diff] [blame] | 1 | """ |
| 2 | 'blacklist' is a Python dictionary, it stores the mapping of a string describing |
| 3 | either a testclass or a testcase, i.e, testclass.testmethod, to the reason (a |
| 4 | string) it is blacklisted. |
| 5 | |
| 6 | Following is an example which states that test class IntegerTypesExprTestCase |
| 7 | should be skipped because 'This test class crashed' and the test case |
| 8 | FoundationTestCase.test_data_type_and_expr_with_dsym should be skipped because |
| 9 | it is 'Temporarily disabled'. |
| 10 | |
| 11 | blacklist = {'IntegerTypesExprTestCase': 'This test class crashed', |
| 12 | 'FoundationTestCase.test_data_type_and_expr_with_dsym': 'Temporarily disabled' |
| 13 | } |
| 14 | """ |
| 15 | |
Jim Ingham | 77ee393 | 2011-08-03 17:41:28 +0000 | [diff] [blame] | 16 | blacklist = {'STLTestCase': '<rdar://problem/8837118> Crashed while running the entire test suite' |
Johnny Chen | 80ef64d | 2011-01-08 01:37:33 +0000 | [diff] [blame] | 17 | # To skip this test case: ./dotest.py -b blacklist.py -v -w 2> ~/Developer/Log/lldbtest.log |
Johnny Chen | ba23f58 | 2010-12-15 20:11:04 +0000 | [diff] [blame] | 18 | } |