File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
utils/swift_snapshot_tool/Sources/swift_snapshot_tool Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,8 @@ struct BisectToolchains: AsyncParsableCommand {
119
119
success = !success
120
120
}
121
121
if !success {
122
- log ( " [INFO] Oldest snapshot fails?! We assume that the oldest snapshot is known good! " )
122
+ log ( " [INFO] Oldest assumed good snapshot fails! Did you forget to pass --invert? " )
123
+ fatalError ( )
123
124
} else {
124
125
log ( " [INFO] Oldest snapshot passes test. Snapshot: \( tags [ startIndex] ) " )
125
126
}
@@ -135,7 +136,8 @@ struct BisectToolchains: AsyncParsableCommand {
135
136
success = !success
136
137
}
137
138
if !success {
138
- log ( " [INFO] Newest snapshot succeceds?! We assume that the newest snapshot is known bad! " )
139
+ log ( " [INFO] Newest assumed bad snapshot succeeds! Did you forget to pass --invert? " )
140
+ fatalError ( )
139
141
} else {
140
142
log ( " [INFO] Newest snapshot passes test. Snapshot: \( tags [ endIndex] ) " )
141
143
}
You can’t perform that action at this time.
0 commit comments