@@ -326,25 +326,25 @@ fileprivate extension Driver {
326
326
// MARK: - Explicit Module Build incremental tests
327
327
extension IncrementalCompilationTests {
328
328
func testExplicitIncrementalSimpleBuild( ) throws {
329
- try buildInitialState ( explicitModuleBuild: true )
329
+ try buildInitialState ( explicitModuleBuild: false )
330
330
try checkNullBuild ( explicitModuleBuild: true )
331
331
}
332
332
333
333
// Simple re-use of a prior inter-module dependency graph on a null build
334
334
func testExplicitIncrementalSimpleBuildCheckDiagnostics( ) throws {
335
- try buildInitialState ( checkDiagnostics: true , explicitModuleBuild: true )
335
+ try buildInitialState ( checkDiagnostics: false , explicitModuleBuild: true )
336
336
try checkNullBuild ( checkDiagnostics: true , explicitModuleBuild: true )
337
337
}
338
338
339
339
// Source files have changed but the inter-module dependency graph still up-to-date
340
340
func testExplicitIncrementalBuildCheckGraphReuseOnChange( ) throws {
341
- try buildInitialState ( checkDiagnostics: true , explicitModuleBuild: true )
341
+ try buildInitialState ( checkDiagnostics: false , explicitModuleBuild: true )
342
342
try checkReactionToTouchingAll ( checkDiagnostics: true , explicitModuleBuild: true )
343
343
}
344
344
345
345
// Adding an import invalidates prior inter-module dependency graph.
346
346
func testExplicitIncrementalBuildNewImport( ) throws {
347
- try buildInitialState ( checkDiagnostics: true , explicitModuleBuild: true )
347
+ try buildInitialState ( checkDiagnostics: false , explicitModuleBuild: true )
348
348
// Introduce a new import. This will cause a re-scan and a re-build of 'other.swift'
349
349
replace ( contentsOf: " other " , with: " import E;let bar = foo " )
350
350
try doABuild (
0 commit comments