Skip to content

Commit 04610ce

Browse files
committed
DarwinCompatibility: Update Xcode Project.
- Update Swift version to 5.0 and target deployment version to 10.14. - Rename TestNSProgressFraction.swift to TestProgressFraction.swift to reflect name of test class. - Wrap file in NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT as the type is internal and cant be tested by DarwinCompaitibilityTests. - Add TestPropertyListEncoder.swift and TestDateIntervalFormatter.swift to DarwinCompatibilityTests.
1 parent 96cb31e commit 04610ce

File tree

5 files changed

+146
-18
lines changed

5 files changed

+146
-18
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,6 @@ if(ENABLE_TESTING)
424424
TestFoundation/TestIndexSet.swift
425425
TestFoundation/TestISO8601DateFormatter.swift
426426
TestFoundation/TestJSONEncoder.swift
427-
TestFoundation/TestPropertyListEncoder.swift
428427
TestFoundation/TestJSONSerialization.swift
429428
TestFoundation/TestLengthFormatter.swift
430429
TestFoundation/TestMassFormatter.swift
@@ -449,7 +448,6 @@ if(ENABLE_TESTING)
449448
TestFoundation/TestNSNumber.swift
450449
TestFoundation/TestNSOrderedSet.swift
451450
TestFoundation/TestNSPredicate.swift
452-
TestFoundation/TestNSProgressFraction.swift
453451
TestFoundation/TestNSRange.swift
454452
TestFoundation/TestNSRegularExpression.swift
455453
TestFoundation/TestNSSet.swift
@@ -466,6 +464,8 @@ if(ENABLE_TESTING)
466464
TestFoundation/TestProcessInfo.swift
467465
TestFoundation/TestProcess.swift
468466
TestFoundation/TestProgress.swift
467+
TestFoundation/TestProgressFraction.swift
468+
TestFoundation/TestPropertyListEncoder.swift
469469
TestFoundation/TestPropertyListSerialization.swift
470470
TestFoundation/TestRunLoop.swift
471471
TestFoundation/TestScanner.swift

DarwinCompatibilityTests.xcodeproj/project.pbxproj

+22-10
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@
1111
B907F36F20BB188800013CBE /* NSString-ISO-8859-1-data.txt in Resources */ = {isa = PBXBuildFile; fileRef = B907F36E20BB188800013CBE /* NSString-ISO-8859-1-data.txt */; };
1212
B917D32420B0DB9700728EE0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B917D32320B0DB9700728EE0 /* Foundation.framework */; };
1313
B917D32620B0DE2000728EE0 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = B917D32520B0DE2000728EE0 /* main.swift */; };
14+
B940492B223B13D000FB4384 /* TestProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = B940492A223B13D000FB4384 /* TestProgressFraction.swift */; };
1415
B94897772135E7AD00FB930E /* Utilities.swift in Sources */ = {isa = PBXBuildFile; fileRef = B94897762135E7AC00FB930E /* Utilities.swift */; };
1516
B95788861F6FB9470003EB01 /* TestNSNumberBridging.swift in Sources */ = {isa = PBXBuildFile; fileRef = B95788851F6FB9470003EB01 /* TestNSNumberBridging.swift */; };
17+
B97E7854222AF973007596B0 /* TestDateIntervalFormatter.swift in Sources */ = {isa = PBXBuildFile; fileRef = B97E7853222AF973007596B0 /* TestDateIntervalFormatter.swift */; };
18+
B97E7856222AF995007596B0 /* TestPropertyListEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = B97E7855222AF995007596B0 /* TestPropertyListEncoder.swift */; };
1619
B987C65E2093C8AF0026B50D /* TestImports.swift in Sources */ = {isa = PBXBuildFile; fileRef = B987C65D2093C8AF0026B50D /* TestImports.swift */; };
1720
B98E33E02136AC120044EBE9 /* TestFileWithZeros.txt in Resources */ = {isa = PBXBuildFile; fileRef = B98E33DF2136AC120044EBE9 /* TestFileWithZeros.txt */; };
1821
B9C89F361F6BF89C00087AF4 /* TestScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89EE61F6BF88F00087AF4 /* TestScanner.swift */; };
@@ -80,7 +83,6 @@
8083
B9C89F781F6BF89C00087AF4 /* TestNSData.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F291F6BF89900087AF4 /* TestNSData.swift */; };
8184
B9C89F791F6BF89C00087AF4 /* TestNSRange.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2A1F6BF89900087AF4 /* TestNSRange.swift */; };
8285
B9C89F7A1F6BF89C00087AF4 /* TestNSGeometry.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2B1F6BF89900087AF4 /* TestNSGeometry.swift */; };
83-
B9C89F7B1F6BF89C00087AF4 /* TestNSProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2C1F6BF89900087AF4 /* TestNSProgressFraction.swift */; };
8486
B9C89F7C1F6BF89C00087AF4 /* TestURLCredential.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2D1F6BF89A00087AF4 /* TestURLCredential.swift */; };
8587
B9C89F7D1F6BF89C00087AF4 /* TestRunLoop.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2E1F6BF89A00087AF4 /* TestRunLoop.swift */; };
8688
B9C89F7E1F6BF89C00087AF4 /* TestThread.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9C89F2F1F6BF89B00087AF4 /* TestThread.swift */; };
@@ -155,8 +157,11 @@
155157
B917D31C20B0DB8B00728EE0 /* xdgTestHelper */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xdgTestHelper; sourceTree = BUILT_PRODUCTS_DIR; };
156158
B917D32320B0DB9700728EE0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
157159
B917D32520B0DE2000728EE0 /* main.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = main.swift; path = TestFoundation/xdgTestHelper/main.swift; sourceTree = "<group>"; };
160+
B940492A223B13D000FB4384 /* TestProgressFraction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestProgressFraction.swift; path = TestFoundation/TestProgressFraction.swift; sourceTree = "<group>"; };
158161
B94897762135E7AC00FB930E /* Utilities.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = Utilities.swift; path = TestFoundation/Utilities.swift; sourceTree = "<group>"; };
159162
B95788851F6FB9470003EB01 /* TestNSNumberBridging.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestNSNumberBridging.swift; path = TestFoundation/TestNSNumberBridging.swift; sourceTree = "<group>"; };
163+
B97E7853222AF973007596B0 /* TestDateIntervalFormatter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestDateIntervalFormatter.swift; path = TestFoundation/TestDateIntervalFormatter.swift; sourceTree = "<group>"; };
164+
B97E7855222AF995007596B0 /* TestPropertyListEncoder.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestPropertyListEncoder.swift; path = TestFoundation/TestPropertyListEncoder.swift; sourceTree = "<group>"; };
160165
B987C65D2093C8AF0026B50D /* TestImports.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestImports.swift; path = TestFoundation/TestImports.swift; sourceTree = "<group>"; };
161166
B98E33DF2136AC120044EBE9 /* TestFileWithZeros.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = TestFileWithZeros.txt; path = TestFoundation/Resources/TestFileWithZeros.txt; sourceTree = "<group>"; };
162167
B9C89ED11F6BF67C00087AF4 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/MacOSX.platform/Developer/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
@@ -294,6 +299,9 @@
294299
B9C89EB81F6BF47D00087AF4 = {
295300
isa = PBXGroup;
296301
children = (
302+
B940492A223B13D000FB4384 /* TestProgressFraction.swift */,
303+
B97E7855222AF995007596B0 /* TestPropertyListEncoder.swift */,
304+
B97E7853222AF973007596B0 /* TestDateIntervalFormatter.swift */,
297305
B9C89FAC1F6DCAE700087AF4 /* Info.plist */,
298306
B9C89FAD1F6DCAE800087AF4 /* NSKeyedUnarchiver-ArrayTest.plist */,
299307
B9C89FB31F6DCAE900087AF4 /* NSKeyedUnarchiver-ComplexTest.plist */,
@@ -558,6 +566,9 @@
558566
isa = PBXSourcesBuildPhase;
559567
buildActionMask = 2147483647;
560568
files = (
569+
B940492B223B13D000FB4384 /* TestProgressFraction.swift in Sources */,
570+
B97E7856222AF995007596B0 /* TestPropertyListEncoder.swift in Sources */,
571+
B97E7854222AF973007596B0 /* TestDateIntervalFormatter.swift in Sources */,
561572
B94897772135E7AD00FB930E /* Utilities.swift in Sources */,
562573
B987C65E2093C8AF0026B50D /* TestImports.swift in Sources */,
563574
B95788861F6FB9470003EB01 /* TestNSNumberBridging.swift in Sources */,
@@ -632,7 +643,6 @@
632643
B9C89F781F6BF89C00087AF4 /* TestNSData.swift in Sources */,
633644
B9C89F791F6BF89C00087AF4 /* TestNSRange.swift in Sources */,
634645
B9C89F7A1F6BF89C00087AF4 /* TestNSGeometry.swift in Sources */,
635-
B9C89F7B1F6BF89C00087AF4 /* TestNSProgressFraction.swift in Sources */,
636646
B9C89F7C1F6BF89C00087AF4 /* TestURLCredential.swift in Sources */,
637647
B9C89F7D1F6BF89C00087AF4 /* TestRunLoop.swift in Sources */,
638648
B9C89F7E1F6BF89C00087AF4 /* TestThread.swift in Sources */,
@@ -661,10 +671,10 @@
661671
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
662672
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
663673
CODE_SIGN_STYLE = Automatic;
664-
MACOSX_DEPLOYMENT_TARGET = 10.13;
674+
MACOSX_DEPLOYMENT_TARGET = 10.14;
665675
OTHER_SWIFT_FLAGS = "-DDEPLOYMENT_RUNTIME_OBJC -DDARWIN_COMPATIBILITY_TESTS";
666676
PRODUCT_NAME = "$(TARGET_NAME)";
667-
SWIFT_VERSION = 4.0;
677+
SWIFT_VERSION = 5.0;
668678
};
669679
name = Debug;
670680
};
@@ -675,10 +685,10 @@
675685
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
676686
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
677687
CODE_SIGN_STYLE = Automatic;
678-
MACOSX_DEPLOYMENT_TARGET = 10.13;
688+
MACOSX_DEPLOYMENT_TARGET = 10.14;
679689
OTHER_SWIFT_FLAGS = "-DDEPLOYMENT_RUNTIME_OBJC -DDARWIN_COMPATIBILITY_TESTS";
680690
PRODUCT_NAME = "$(TARGET_NAME)";
681-
SWIFT_VERSION = 4.0;
691+
SWIFT_VERSION = 5.0;
682692
};
683693
name = Release;
684694
};
@@ -730,7 +740,7 @@
730740
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
731741
GCC_WARN_UNUSED_FUNCTION = YES;
732742
GCC_WARN_UNUSED_VARIABLE = YES;
733-
MACOSX_DEPLOYMENT_TARGET = 10.13;
743+
MACOSX_DEPLOYMENT_TARGET = 10.14;
734744
MTL_ENABLE_DEBUG_INFO = YES;
735745
ONLY_ACTIVE_ARCH = YES;
736746
SDKROOT = macosx;
@@ -781,7 +791,7 @@
781791
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
782792
GCC_WARN_UNUSED_FUNCTION = YES;
783793
GCC_WARN_UNUSED_VARIABLE = YES;
784-
MACOSX_DEPLOYMENT_TARGET = 10.13;
794+
MACOSX_DEPLOYMENT_TARGET = 10.14;
785795
MTL_ENABLE_DEBUG_INFO = NO;
786796
SDKROOT = macosx;
787797
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
@@ -795,10 +805,11 @@
795805
COMBINE_HIDPI_IMAGES = YES;
796806
INFOPLIST_FILE = DarwinCompatibilityTests/Info.plist;
797807
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
808+
MACOSX_DEPLOYMENT_TARGET = 10.14;
798809
"OTHER_SWIFT_FLAGS[arch=*]" = "-DDEPLOYMENT_RUNTIME_OBJC -DDARWIN_COMPATIBILITY_TESTS";
799810
PRODUCT_BUNDLE_IDENTIFIER = org.swift.DarwinCompatibilityTests;
800811
PRODUCT_NAME = "$(TARGET_NAME)";
801-
SWIFT_VERSION = 4.0;
812+
SWIFT_VERSION = 5.0;
802813
};
803814
name = Debug;
804815
};
@@ -809,10 +820,11 @@
809820
COMBINE_HIDPI_IMAGES = YES;
810821
INFOPLIST_FILE = DarwinCompatibilityTests/Info.plist;
811822
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
823+
MACOSX_DEPLOYMENT_TARGET = 10.14;
812824
"OTHER_SWIFT_FLAGS[arch=*]" = "-DDEPLOYMENT_RUNTIME_OBJC -DDARWIN_COMPATIBILITY_TESTS";
813825
PRODUCT_BUNDLE_IDENTIFIER = org.swift.DarwinCompatibilityTests;
814826
PRODUCT_NAME = "$(TARGET_NAME)";
815-
SWIFT_VERSION = 4.0;
827+
SWIFT_VERSION = 5.0;
816828
};
817829
name = Release;
818830
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1020"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "B917D31B20B0DB8B00728EE0"
18+
BuildableName = "xdgTestHelper"
19+
BlueprintName = "xdgTestHelper"
20+
ReferencedContainer = "container:DarwinCompatibilityTests.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
<TestableReference
32+
skipped = "NO">
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "B9C89ED61F6BF77E00087AF4"
36+
BuildableName = "DarwinCompatibilityTests.xctest"
37+
BlueprintName = "DarwinCompatibilityTests"
38+
ReferencedContainer = "container:DarwinCompatibilityTests.xcodeproj">
39+
</BuildableReference>
40+
<SkippedTests>
41+
<Test
42+
Identifier = "TestFileHandle">
43+
</Test>
44+
<Test
45+
Identifier = "TestPipe">
46+
</Test>
47+
<Test
48+
Identifier = "TestURLSession">
49+
</Test>
50+
</SkippedTests>
51+
</TestableReference>
52+
</Testables>
53+
<MacroExpansion>
54+
<BuildableReference
55+
BuildableIdentifier = "primary"
56+
BlueprintIdentifier = "B917D31B20B0DB8B00728EE0"
57+
BuildableName = "xdgTestHelper"
58+
BlueprintName = "xdgTestHelper"
59+
ReferencedContainer = "container:DarwinCompatibilityTests.xcodeproj">
60+
</BuildableReference>
61+
</MacroExpansion>
62+
<AdditionalOptions>
63+
</AdditionalOptions>
64+
</TestAction>
65+
<LaunchAction
66+
buildConfiguration = "Debug"
67+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
68+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
69+
launchStyle = "0"
70+
useCustomWorkingDirectory = "NO"
71+
ignoresPersistentStateOnLaunch = "NO"
72+
debugDocumentVersioning = "YES"
73+
debugServiceExtension = "internal"
74+
allowLocationSimulation = "YES">
75+
<BuildableProductRunnable
76+
runnableDebuggingMode = "0">
77+
<BuildableReference
78+
BuildableIdentifier = "primary"
79+
BlueprintIdentifier = "B917D31B20B0DB8B00728EE0"
80+
BuildableName = "xdgTestHelper"
81+
BlueprintName = "xdgTestHelper"
82+
ReferencedContainer = "container:DarwinCompatibilityTests.xcodeproj">
83+
</BuildableReference>
84+
</BuildableProductRunnable>
85+
<AdditionalOptions>
86+
</AdditionalOptions>
87+
</LaunchAction>
88+
<ProfileAction
89+
buildConfiguration = "Release"
90+
shouldUseLaunchSchemeArgsEnv = "YES"
91+
savedToolIdentifier = ""
92+
useCustomWorkingDirectory = "NO"
93+
debugDocumentVersioning = "YES">
94+
<BuildableProductRunnable
95+
runnableDebuggingMode = "0">
96+
<BuildableReference
97+
BuildableIdentifier = "primary"
98+
BlueprintIdentifier = "B917D31B20B0DB8B00728EE0"
99+
BuildableName = "xdgTestHelper"
100+
BlueprintName = "xdgTestHelper"
101+
ReferencedContainer = "container:DarwinCompatibilityTests.xcodeproj">
102+
</BuildableReference>
103+
</BuildableProductRunnable>
104+
</ProfileAction>
105+
<AnalyzeAction
106+
buildConfiguration = "Debug">
107+
</AnalyzeAction>
108+
<ArchiveAction
109+
buildConfiguration = "Release"
110+
revealArchiveInOrganizer = "YES">
111+
</ArchiveAction>
112+
</Scheme>

Foundation.xcodeproj/project.pbxproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@
366366
B910957B1EEF237800A71930 /* NSString-UTF16-BE-data.txt in Resources */ = {isa = PBXBuildFile; fileRef = B91095791EEF237800A71930 /* NSString-UTF16-BE-data.txt */; };
367367
B933A79E1F3055F700FE6846 /* NSString-UTF32-BE-data.txt in Resources */ = {isa = PBXBuildFile; fileRef = B933A79C1F3055F600FE6846 /* NSString-UTF32-BE-data.txt */; };
368368
B933A79F1F3055F700FE6846 /* NSString-UTF32-LE-data.txt in Resources */ = {isa = PBXBuildFile; fileRef = B933A79D1F3055F600FE6846 /* NSString-UTF32-LE-data.txt */; };
369+
B940492D223B146800FB4384 /* TestProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = B940492C223B146800FB4384 /* TestProgressFraction.swift */; };
369370
B951B5EC1F4E2A2000D8B332 /* TestNSLock.swift in Sources */ = {isa = PBXBuildFile; fileRef = B951B5EB1F4E2A2000D8B332 /* TestNSLock.swift */; };
370371
B98E33DD2136AA740044EBE9 /* TestFileWithZeros.txt in Resources */ = {isa = PBXBuildFile; fileRef = B98E33DC2136AA740044EBE9 /* TestFileWithZeros.txt */; };
371372
B9974B961EDF4A22007F15B8 /* TransferState.swift in Sources */ = {isa = PBXBuildFile; fileRef = B9974B8F1EDF4A22007F15B8 /* TransferState.swift */; };
@@ -412,7 +413,6 @@
412413
E1A3726F1C31EBFB0023AF4D /* NSXMLDocumentTestData.xml in Resources */ = {isa = PBXBuildFile; fileRef = E1A3726E1C31EBFB0023AF4D /* NSXMLDocumentTestData.xml */; };
413414
EA01AAEC1DA839C4008F4E07 /* TestProgress.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA01AAEB1DA839C4008F4E07 /* TestProgress.swift */; };
414415
EA0812691DA71C8A00651B70 /* ProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0812681DA71C8A00651B70 /* ProgressFraction.swift */; };
415-
EA08126B1DA80C3600651B70 /* TestNSProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA08126A1DA80C3600651B70 /* TestNSProgressFraction.swift */; };
416416
EA08126C1DA810BE00651B70 /* ProgressFraction.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0812681DA71C8A00651B70 /* ProgressFraction.swift */; };
417417
EA418C261D57257D005EAD0D /* NSKeyedArchiverHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA418C251D57257D005EAD0D /* NSKeyedArchiverHelpers.swift */; };
418418
EA54A6FB1DB16D53009E0809 /* TestObjCRuntime.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA54A6FA1DB16D53009E0809 /* TestObjCRuntime.swift */; };
@@ -896,6 +896,7 @@
896896
B91095791EEF237800A71930 /* NSString-UTF16-BE-data.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "NSString-UTF16-BE-data.txt"; sourceTree = "<group>"; };
897897
B933A79C1F3055F600FE6846 /* NSString-UTF32-BE-data.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "NSString-UTF32-BE-data.txt"; sourceTree = "<group>"; };
898898
B933A79D1F3055F600FE6846 /* NSString-UTF32-LE-data.txt */ = {isa = PBXFileReference; lastKnownFileType = text; path = "NSString-UTF32-LE-data.txt"; sourceTree = "<group>"; };
899+
B940492C223B146800FB4384 /* TestProgressFraction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = TestProgressFraction.swift; path = TestFoundation/TestProgressFraction.swift; sourceTree = "<group>"; };
899900
B951B5EB1F4E2A2000D8B332 /* TestNSLock.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestNSLock.swift; sourceTree = "<group>"; };
900901
B98E33DC2136AA740044EBE9 /* TestFileWithZeros.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TestFileWithZeros.txt; sourceTree = "<group>"; };
901902
B9974B8F1EDF4A22007F15B8 /* TransferState.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TransferState.swift; sourceTree = "<group>"; };
@@ -1119,6 +1120,7 @@
11191120
5B5D88531BBC938800234F36 = {
11201121
isa = PBXGroup;
11211122
children = (
1123+
B940492C223B146800FB4384 /* TestProgressFraction.swift */,
11221124
B167A6641ED7303F0040B09A /* README.md */,
11231125
5BDC3F2C1BCC5DB500ED97BB /* Foundation */,
11241126
EAB57B681BD1A255004AC5C5 /* CoreFoundation */,
@@ -2592,6 +2594,7 @@
25922594
isa = PBXSourcesBuildPhase;
25932595
buildActionMask = 2147483647;
25942596
files = (
2597+
B940492D223B146800FB4384 /* TestProgressFraction.swift in Sources */,
25952598
159884921DCC877700E3314C /* TestHTTPCookieStorage.swift in Sources */,
25962599
5FE52C951D147D1C00F7D270 /* TestNSTextCheckingResult.swift in Sources */,
25972600
5B13B3451C582D4C00651CE2 /* TestNSString.swift in Sources */,
@@ -2618,7 +2621,6 @@
26182621
5B13B3411C582D4C00651CE2 /* TestNSRegularExpression.swift in Sources */,
26192622
5B13B3491C582D4C00651CE2 /* TestTimeZone.swift in Sources */,
26202623
5B13B34B1C582D4C00651CE2 /* TestNSURLRequest.swift in Sources */,
2621-
EA08126B1DA80C3600651B70 /* TestNSProgressFraction.swift in Sources */,
26222624
5B13B33E1C582D4C00651CE2 /* TestProcessInfo.swift in Sources */,
26232625
5B13B33F1C582D4C00651CE2 /* TestPropertyListSerialization.swift in Sources */,
26242626
5B13B32C1C582D4C00651CE2 /* TestDate.swift in Sources */,

0 commit comments

Comments
 (0)