File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ struct Rust {
144
144
rpath : Option < bool > ,
145
145
optimize_tests : Option < bool > ,
146
146
debuginfo_tests : Option < bool > ,
147
+ codegen_tests : Option < bool > ,
147
148
}
148
149
149
150
/// TOML representation of how each build target is configured.
@@ -232,6 +233,7 @@ impl Config {
232
233
set ( & mut config. rust_optimize , rust. optimize ) ;
233
234
set ( & mut config. rust_optimize_tests , rust. optimize_tests ) ;
234
235
set ( & mut config. rust_debuginfo_tests , rust. debuginfo_tests ) ;
236
+ set ( & mut config. codegen_tests , rust. codegen_tests ) ;
235
237
set ( & mut config. rust_rpath , rust. rpath ) ;
236
238
set ( & mut config. debug_jemalloc , rust. debug_jemalloc ) ;
237
239
set ( & mut config. use_jemalloc , rust. use_jemalloc ) ;
Original file line number Diff line number Diff line change 133
133
#optimize-tests = true
134
134
#debuginfo-tests = true
135
135
136
+ # Flag indicating whether codegen tests will be run or not. If you get an error
137
+ # saying that the FileCheck executable is missing, you may want to disable this.
138
+ #codegen-tests = true
139
+
136
140
# =============================================================================
137
141
# Options for specific targets
138
142
#
You can’t perform that action at this time.
0 commit comments