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

Side by Side Diff: build/nocompile.gypi

Issue 678263003: Switch to clang for nocompile tests and rebaseline existing results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Downcasting Pass Created 6 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
« no previous file with comments | « base/memory/weak_ptr_unittest.nc ('k') | tools/nocompile_driver.py » ('j') | 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 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is meant to be included into an target to create a unittest that 5 # This file is meant to be included into an target to create a unittest that
6 # invokes a set of no-compile tests. A no-compile test is a test that asserts 6 # invokes a set of no-compile tests. A no-compile test is a test that asserts
7 # a particular construct will not compile. 7 # a particular construct will not compile.
8 # 8 #
9 # Also see: 9 # Also see:
10 # http://dev.chromium.org/developers/testing/no-compile-tests 10 # http://dev.chromium.org/developers/testing/no-compile-tests
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 # compiler and generates a .cc file that is empty on success, or will have a 53 # compiler and generates a .cc file that is empty on success, or will have a
54 # series of #error lines on failure, and a set of trivially passing gunit 54 # series of #error lines on failure, and a set of trivially passing gunit
55 # TEST() functions on success. This allows us to fail at the compile step when 55 # TEST() functions on success. This allows us to fail at the compile step when
56 # something goes wrong, and know during the unittest run that the test was at 56 # something goes wrong, and know during the unittest run that the test was at
57 # least processed when things go right. 57 # least processed when things go right.
58 58
59 { 59 {
60 # TODO(awong): Disabled until http://crbug.com/105388 is resolved. 60 # TODO(awong): Disabled until http://crbug.com/105388 is resolved.
61 'sources/': [['exclude', '\\.nc$']], 61 'sources/': [['exclude', '\\.nc$']],
62 'conditions': [ 62 'conditions': [
63 [ 'OS=="linux" and clang==0', { 63 [ 'OS!="win" and clang==1', {
64 'rules': [ 64 'rules': [
65 { 65 {
66 'variables': { 66 'variables': {
67 'nocompile_driver': '<(DEPTH)/tools/nocompile_driver.py', 67 'nocompile_driver': '<(DEPTH)/tools/nocompile_driver.py',
68 'nc_result_path': ('<(INTERMEDIATE_DIR)/<(module_dir)/' 68 'nc_result_path': ('<(INTERMEDIATE_DIR)/<(module_dir)/'
69 '<(RULE_INPUT_ROOT)_nc.cc'), 69 '<(RULE_INPUT_ROOT)_nc.cc'),
70 }, 70 },
71 'rule_name': 'run_nocompile', 71 'rule_name': 'run_nocompile',
72 'extension': 'nc', 72 'extension': 'nc',
73 'inputs': [ 73 'inputs': [
74 '<(nocompile_driver)', 74 '<(nocompile_driver)',
75 ], 75 ],
76 'outputs': [ 76 'outputs': [
77 '<(nc_result_path)' 77 '<(nc_result_path)'
78 ], 78 ],
79 'action': [ 79 'action': [
80 'python', 80 'python',
81 '<(nocompile_driver)', 81 '<(nocompile_driver)',
82 '4', # number of compilers to invoke in parallel. 82 '4', # number of compilers to invoke in parallel.
83 '<(RULE_INPUT_PATH)', 83 '<(RULE_INPUT_PATH)',
84 '-Wall -Werror -Wfatal-errors -I<(DEPTH)', 84 '-Wall -Werror -Wfatal-errors -I<(DEPTH)',
85 '<(nc_result_path)', 85 '<(nc_result_path)',
86 ], 86 ],
87 'message': 'Generating no compile results for <(RULE_INPUT_PATH)', 87 'message': 'Generating no compile results for <(RULE_INPUT_PATH)',
88 'process_outputs_as_sources': 1, 88 'process_outputs_as_sources': 1,
89 }, 89 },
90 ], 90 ],
91 }, { 91 }, {
92 'sources/': [['exclude', '\\.nc$']] 92 'sources/': [['exclude', '\\.nc$']]
93 }], # 'OS=="linux" and clang=="0"' 93 }], # 'OS!="win" and clang=="1"'
94 ], 94 ],
95 } 95 }
96 96
OLDNEW
« no previous file with comments | « base/memory/weak_ptr_unittest.nc ('k') | tools/nocompile_driver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698