Commit fe16965 1 parent 29669e6 commit fe16965 Copy full SHA for fe16965
File tree 2 files changed +7
-2
lines changed
main/java/com/google/devtools/build/lib/analysis
test/java/com/google/devtools/build/lib/remote
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -91,8 +91,9 @@ public class AnalysisOptions extends OptionsBase {
91
91
public boolean skyframePrepareAnalysis ;
92
92
93
93
@ Option (
94
- name = "experimental_strict_conflict_checks" ,
95
- defaultValue = "false" ,
94
+ name = "incompatible_strict_conflict_checks" ,
95
+ oldName = "experimental_strict_conflict_checks" ,
96
+ defaultValue = "true" ,
96
97
documentationCategory = OptionDocumentationCategory .UNDOCUMENTED ,
97
98
metadataTags = OptionMetadataTag .INCOMPATIBLE_CHANGE ,
98
99
effectTags = {OptionEffectTag .BAZEL_INTERNAL_CONFIGURATION },
Original file line number Diff line number Diff line change @@ -312,6 +312,8 @@ public void symlinkToDirectory() throws Exception {
312
312
313
313
@ Test
314
314
public void symlinkToNestedFile () throws Exception {
315
+ addOptions ("--noincompatible_strict_conflict_checks" );
316
+
315
317
write (
316
318
"a/defs.bzl" ,
317
319
"def _impl(ctx):" ,
@@ -364,6 +366,8 @@ public void symlinkToNestedFile() throws Exception {
364
366
365
367
@ Test
366
368
public void symlinkToNestedDirectory () throws Exception {
369
+ addOptions ("--noincompatible_strict_conflict_checks" );
370
+
367
371
write (
368
372
"a/defs.bzl" ,
369
373
"def _impl(ctx):" ,
You can’t perform that action at this time.
0 commit comments