| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 Google Inc. All rights reserved. | 2 # Copyright (c) 2011 Google Inc. All rights reserved. |
| 3 # Copyright (C) 2010 Chris Jerdonek (cjerdonek@webkit.org) | 3 # Copyright (C) 2010 Chris Jerdonek (cjerdonek@webkit.org) |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 'webkitpy.w3c.*', | 52 'webkitpy.w3c.*', |
| 53 'webkitpy.layout_tests.layout_package.bot_test_expectations_unittest.*', | 53 'webkitpy.layout_tests.layout_package.bot_test_expectations_unittest.*', |
| 54 ] | 54 ] |
| 55 else: | 55 else: |
| 56 # The scm tests are really slow, so we skip them by default. | 56 # The scm tests are really slow, so we skip them by default. |
| 57 # bugs.webkit.org/show_bug.cgi?id=31818 . | 57 # bugs.webkit.org/show_bug.cgi?id=31818 . |
| 58 skip = [ | 58 skip = [ |
| 59 'webkitpy.common.checkout.scm.scm_unittest.*', | 59 'webkitpy.common.checkout.scm.scm_unittest.*', |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 skip.append('webkitpy.layout_tests.*') |
| 63 |
| 62 sys.exit(typ.main(top_level_dir=scripts_dir, | 64 sys.exit(typ.main(top_level_dir=scripts_dir, |
| 63 skip=skip, | 65 skip=skip, |
| 64 path=[os.path.join(scripts_dir, 'webkitpy', 'thirdparty')], | 66 path=[os.path.join(scripts_dir, 'webkitpy', 'thirdparty')], |
| 65 win_multiprocessing='spawn')) | 67 win_multiprocessing='spawn')) |
| OLD | NEW |