OLD | NEW |
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 # The .nc files are actually processed by a python script which executes the | 51 # The .nc files are actually processed by a python script which executes the |
52 # compiler and generates a .cc file that is empty on success, or will have a | 52 # compiler and generates a .cc file that is empty on success, or will have a |
53 # series of #error lines on failure, and a set of trivially passing gunit | 53 # series of #error lines on failure, and a set of trivially passing gunit |
54 # TEST() functions on success. This allows us to fail at the compile step when | 54 # TEST() functions on success. This allows us to fail at the compile step when |
55 # something goes wrong, and know during the unittest run that the test was at | 55 # something goes wrong, and know during the unittest run that the test was at |
56 # least processed when things go right. | 56 # least processed when things go right. |
57 | 57 |
58 import("//testing/test.gni") | 58 import("//testing/test.gni") |
59 | 59 |
60 declare_args() { | 60 declare_args() { |
61 # TODO(crbug.com/105388): make sure no-compile test is not flaky. | 61 # TODO(crbug.com/105388): Disabled until http://crbug.com/105388 is resolved. |
62 enable_nocompile_tests = !is_win && !is_ios && is_clang | 62 enable_nocompile_tests = false |
63 } | 63 } |
64 | 64 |
65 if (enable_nocompile_tests) { | 65 if (enable_nocompile_tests) { |
66 template("nocompile_test") { | 66 template("nocompile_test") { |
67 nocompile_target = target_name + "_run_nocompile" | 67 nocompile_target = target_name + "_run_nocompile" |
68 | 68 |
69 action_foreach(nocompile_target) { | 69 action_foreach(nocompile_target) { |
70 script = "//tools/nocompile_driver.py" | 70 script = "//tools/nocompile_driver.py" |
71 sources = invoker.sources | 71 sources = invoker.sources |
72 | 72 |
(...skipping 10 matching lines...) Expand all Loading... |
83 "{{output}}", | 83 "{{output}}", |
84 ] | 84 ] |
85 } | 85 } |
86 | 86 |
87 test(target_name) { | 87 test(target_name) { |
88 deps = invoker.deps + [ ":$nocompile_target" ] | 88 deps = invoker.deps + [ ":$nocompile_target" ] |
89 sources = get_target_outputs(":$nocompile_target") | 89 sources = get_target_outputs(":$nocompile_target") |
90 } | 90 } |
91 } | 91 } |
92 } | 92 } |
OLD | NEW |