Home | History | Annotate | Download | only in test
      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 
     16 blacklist = {'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