Skip to content

Commit c5484c9

Browse files
authored
Merge pull request #527 from artemcm/revertTestFeatureDisable
Revert "Tweak test relying on versioned clang module re-scanning to not need it."
2 parents 4b6b994 + 6c08abd commit c5484c9

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
1-
//#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 110000
2-
// FIXME: Versioned re-scanning has an intermittend failure so the test that relies on it is disabled
3-
// temporarily (rdar://74812312)
1+
#if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 110000
42
#include "X.h"
5-
//#endif
3+
#endif
64

75
void funcG(void);

Tests/SwiftDriverTests/ExplicitModuleBuildTests.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -628,10 +628,7 @@ final class ExplicitModuleBuildTests: XCTestCase {
628628
let expectedNumberOfDependencies: Int
629629
if driver.targetTriple.isMacOSX,
630630
driver.targetTriple.version(for: .macOS) >= Triple.Version(11, 0, 0) {
631-
// FIXME: Versioned re-scanning has an intermittend failure so the test that relies on it
632-
// is disabled temporarily (rdar://74812312)
633-
// expectedNumberOfDependencies = 11
634-
expectedNumberOfDependencies = 12
631+
expectedNumberOfDependencies = 11
635632
} else {
636633
expectedNumberOfDependencies = 12
637634
}

0 commit comments

Comments
 (0)