Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: Tools/Scripts/webkitpy/bindings/main.py

Issue 74783008: IDL compiler: [ActiveDOMObject] interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/bindings/tests/results/V8TestCheckSecurityInterface.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 'TestActiveDOMObject.idl', 45 'TestCheckSecurityInterface.idl',
46 'TestCustomAccessors.idl', 46 'TestCustomAccessors.idl',
47 'TestEvent.idl', 47 'TestEvent.idl',
48 'TestEventConstructor.idl', 48 'TestEventConstructor.idl',
49 'TestEventTarget.idl', 49 'TestEventTarget.idl',
50 'TestException.idl', 50 'TestException.idl',
51 'TestExtendedEvent.idl', 51 'TestExtendedEvent.idl',
52 'TestImplements.idl', 52 'TestImplements.idl',
53 'TestInterface.idl', 53 'TestInterface.idl',
54 'TestInterfaceImplementedAs.idl', 54 'TestInterfaceImplementedAs.idl',
55 'TestMediaQueryListListener.idl', 55 'TestMediaQueryListListener.idl',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 278
279 all_tests_passed = self.run_tests() 279 all_tests_passed = self.run_tests()
280 if all_tests_passed: 280 if all_tests_passed:
281 if self.verbose: 281 if self.verbose:
282 print 282 print
283 print PASS_MESSAGE 283 print PASS_MESSAGE
284 return 0 284 return 0
285 print 285 print
286 print FAIL_MESSAGE 286 print FAIL_MESSAGE
287 return -1 287 return -1
OLDNEW
« no previous file with comments | « Source/bindings/tests/results/V8TestCheckSecurityInterface.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698