Skip to content

Commit b81ab68

Browse files
committed
remove more ios refs
1 parent e79634c commit b81ab68

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,9 @@ MacCatalyst/testbed/Python.xcframework/ios-*/bin
8888
MacCatalyst/testbed/Python.xcframework/ios-*/include
8989
MacCatalyst/testbed/Python.xcframework/ios-*/lib
9090
MacCatalyst/testbed/Python.xcframework/ios-*/Python.framework
91-
MacCatalyst/testbed/iOSTestbed.xcodeproj/project.xcworkspace
92-
MacCatalyst/testbed/iOSTestbed.xcodeproj/xcuserdata
93-
MacCatalyst/testbed/iOSTestbed.xcodeproj/xcshareddata
91+
MacCatalyst/testbed/CatalystTestbed.xcodeproj/project.xcworkspace
92+
MacCatalyst/testbed/CatalystTestbed.xcodeproj/xcuserdata
93+
MacCatalyst/testbed/CatalystTestbed.xcodeproj/xcshareddata
9494
visionOS/testbed/Python.xcframework/xr*-*/bin
9595
visionOS/testbed/Python.xcframework/xr*-*/include
9696
visionOS/testbed/Python.xcframework/xr*-*/lib

MacCatalyst/testbed/CatalystTestbed.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
607A66222B0EFA390010BFC8 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607A66212B0EFA390010BFC8 /* Assets.xcassets */; };
1212
607A66252B0EFA390010BFC8 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607A66232B0EFA390010BFC8 /* LaunchScreen.storyboard */; };
1313
607A66282B0EFA390010BFC8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 607A66272B0EFA390010BFC8 /* main.m */; };
14-
607A66322B0EFA3A0010BFC8 /* iOSTestbedTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 607A66312B0EFA3A0010BFC8 /* iOSTestbedTests.m */; };
14+
607A66322B0EFA3A0010BFC8 /* CatalystTestbedTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 607A66312B0EFA3A0010BFC8 /* CatalystTestbedTests.m */; };
1515
607A664C2B0EFC080010BFC8 /* Python.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607A664A2B0EFB310010BFC8 /* Python.xcframework */; };
1616
607A664D2B0EFC080010BFC8 /* Python.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 607A664A2B0EFB310010BFC8 /* Python.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
1717
607A66502B0EFFE00010BFC8 /* Python.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607A664A2B0EFB310010BFC8 /* Python.xcframework */; };
@@ -64,7 +64,7 @@
6464
607A66242B0EFA390010BFC8 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
6565
607A66272B0EFA390010BFC8 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
6666
607A662D2B0EFA3A0010BFC8 /* CatalystTestbedTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CatalystTestbedTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
67-
607A66312B0EFA3A0010BFC8 /* iOSTestbedTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = iOSTestbedTests.m; sourceTree = "<group>"; };
67+
607A66312B0EFA3A0010BFC8 /* CatalystTestbedTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CatalystTestbedTests.m; sourceTree = "<group>"; };
6868
607A664A2B0EFB310010BFC8 /* Python.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; path = Python.xcframework; sourceTree = "<group>"; };
6969
607A66572B0F079F0010BFC8 /* dylib-Info-template.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "dylib-Info-template.plist"; sourceTree = "<group>"; };
7070
607A66592B0F08600010BFC8 /* CatalystTestbed-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "CatalystTestbed-Info.plist"; sourceTree = "<group>"; };
@@ -133,7 +133,7 @@
133133
607A66302B0EFA3A0010BFC8 /* CatalystTestbedTests */ = {
134134
isa = PBXGroup;
135135
children = (
136-
607A66312B0EFA3A0010BFC8 /* iOSTestbedTests.m */,
136+
607A66312B0EFA3A0010BFC8 /* CatalystTestbedTests.m */,
137137
);
138138
path = CatalystTestbedTests;
139139
sourceTree = "<group>";
@@ -302,7 +302,7 @@
302302
isa = PBXSourcesBuildPhase;
303303
buildActionMask = 2147483647;
304304
files = (
305-
607A66322B0EFA3A0010BFC8 /* iOSTestbedTests.m in Sources */,
305+
607A66322B0EFA3A0010BFC8 /* CatalystTestbedTests.m in Sources */,
306306
);
307307
runOnlyForDeploymentPostprocessing = 0;
308308
};

MacCatalyst/testbed/CatalystTestbed/AppDelegate.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// AppDelegate.h
3-
// iOSTestbed
3+
// CatalystTestbed
44
//
55

66
#import <UIKit/UIKit.h>

MacCatalyst/testbed/CatalystTestbed/AppDelegate.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// AppDelegate.m
3-
// iOSTestbed
3+
// CatalystTestbed
44
//
55

66
#import "AppDelegate.h"

MacCatalyst/testbed/CatalystTestbed/main.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// main.m
3-
// iOSTestbed
3+
// CatalystTestbed
44
//
55

66
#import <UIKit/UIKit.h>

MacCatalyst/testbed/CatalystTestbedTests/iOSTestbedTests.m renamed to MacCatalyst/testbed/CatalystTestbedTests/CatalystTestbedTests.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#import <XCTest/XCTest.h>
22
#import <Python/Python.h>
33

4-
@interface iOSTestbedTests : XCTestCase
4+
@interface CatalystTestbedTests : XCTestCase
55

66
@end
77

8-
@implementation iOSTestbedTests
8+
@implementation CatalystTestbedTests
99

1010

1111
- (void)testPython {
@@ -38,7 +38,7 @@ - (void)testPython {
3838
NSLog(@"Unable to identify test arguments.");
3939
}
4040
argv = malloc(sizeof(char *) * ([test_args count] + 1));
41-
argv[0] = "iOSTestbed";
41+
argv[0] = "CatalystTestbed";
4242
for (int i = 1; i < [test_args count]; i++) {
4343
argv[i] = [[test_args objectAtIndex:i] UTF8String];
4444
}

0 commit comments

Comments
 (0)