Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 # Copyright (C) 2011 Google Inc. All rights reserved. | 1 # Copyright (C) 2011 Google Inc. All rights reserved. | 
| 2 # | 2 # | 
| 3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without | 
| 4 # modification, are permitted provided that the following conditions | 4 # modification, are permitted provided that the following conditions | 
| 5 # are met: | 5 # are met: | 
| 6 # 1. Redistributions of source code must retain the above copyright | 6 # 1. Redistributions of source code must retain the above copyright | 
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. | 
| 8 # 2. Redistributions in binary form must reproduce the above copyright | 8 # 2. Redistributions in binary form must reproduce the above copyright | 
| 9 # notice, this list of conditions and the following disclaimer in the | 9 # notice, this list of conditions and the following disclaimer in the | 
| 10 # documentation and/or other materials provided with the distribution. | 10 # documentation and/or other materials provided with the distribution. | 
| (...skipping 24 matching lines...) Expand all Loading... | |
| 35 | 35 | 
| 36 If the failures are not due to your changes, test results may be out of sync; | 36 If the failures are not due to your changes, test results may be out of sync; | 
| 37 please rebaseline them in a separate CL, after checking that tests fail in ToT. | 37 please rebaseline them in a separate CL, after checking that tests fail in ToT. | 
| 38 In CL, please set: | 38 In CL, please set: | 
| 39 NOTRY=true | 39 NOTRY=true | 
| 40 TBR=(someone in Source/bindings/OWNERS or WATCHLISTS:bindings) | 40 TBR=(someone in Source/bindings/OWNERS or WATCHLISTS:bindings) | 
| 41 """ | 41 """ | 
| 42 | 42 | 
| 43 # Python compiler is incomplete; skip IDLs with unimplemented features | 43 # Python compiler is incomplete; skip IDLs with unimplemented features | 
| 44 SKIP_PYTHON = set([ | 44 SKIP_PYTHON = set([ | 
| 45 'TestCheckSecurityInterface.idl', | |
| 
 
haraken
2013/11/19 07:05:06
Don't you need to 'git rm' the IDL file as well?
 
Nils Barth (inactive)
2013/11/19 08:10:09
This is the SKIP list;
I'm turning the test on in
 
Nils Barth (inactive)
2013/11/19 08:10:09
This is the SKIP list (blacklist);
I'm turning the
 
 | |
| 46 'TestCustomAccessors.idl', | 45 'TestCustomAccessors.idl', | 
| 47 'TestEvent.idl', | 46 'TestEvent.idl', | 
| 48 'TestEventConstructor.idl', | 47 'TestEventConstructor.idl', | 
| 49 'TestEventTarget.idl', | 48 'TestEventTarget.idl', | 
| 50 'TestException.idl', | 49 'TestException.idl', | 
| 51 'TestExtendedEvent.idl', | 50 'TestExtendedEvent.idl', | 
| 52 'TestImplements.idl', | 51 'TestImplements.idl', | 
| 53 'TestInterface.idl', | 52 'TestInterface.idl', | 
| 54 'TestInterfaceImplementedAs.idl', | 53 'TestInterfaceImplementedAs.idl', | 
| 55 'TestMediaQueryListListener.idl', | 54 'TestMediaQueryListListener.idl', | 
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 278 | 277 | 
| 279 all_tests_passed = self.run_tests() | 278 all_tests_passed = self.run_tests() | 
| 280 if all_tests_passed: | 279 if all_tests_passed: | 
| 281 if self.verbose: | 280 if self.verbose: | 
| 282 print | 281 print | 
| 283 print PASS_MESSAGE | 282 print PASS_MESSAGE | 
| 284 return 0 | 283 return 0 | 
| 285 print | 284 print | 
| 286 print FAIL_MESSAGE | 285 print FAIL_MESSAGE | 
| 287 return -1 | 286 return -1 | 
| OLD | NEW |