Skip to content

Commit

Permalink
Remove Extra Build Script Reference and extra flag from Tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
tirodkar committed Feb 17, 2016
1 parent b17a77f commit a52dff0
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 22 deletions.
10 changes: 0 additions & 10 deletions EarlGrey.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@
FD6D0B9F1C6D494F0001EA75 /* GREYNot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GREYNot.m; sourceTree = "<group>"; };
FD6D0BA01C6D494F0001EA75 /* GREYStringDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GREYStringDescription.h; sourceTree = "<group>"; };
FD6D0BA11C6D494F0001EA75 /* GREYStringDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GREYStringDescription.m; sourceTree = "<group>"; };
FDA41E101C602D43008DEE88 /* build_universal_static_framework.sh */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.sh; name = build_universal_static_framework.sh; path = Scripts/build_universal_static_framework.sh; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -690,14 +689,6 @@
name = fishhook;
sourceTree = "<group>";
};
FDA41E0F1C602D2D008DEE88 /* Scripts */ = {
isa = PBXGroup;
children = (
FDA41E101C602D43008DEE88 /* build_universal_static_framework.sh */,
);
name = Scripts;
sourceTree = "<group>";
};
FDE401021BE83859001C172E /* Dependencies */ = {
isa = PBXGroup;
children = (
Expand All @@ -712,7 +703,6 @@
FD1000EA1C5B466F00B2DB0A /* EarlGrey */,
FD06C6751BECAE6A009032A5 /* Frameworks */,
FDE401021BE83859001C172E /* Dependencies */,
FDA41E0F1C602D2D008DEE88 /* Scripts */,
FDE4FFAA1BE831AA001C172E /* Products */,
);
sourceTree = "<group>";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -906,8 +906,6 @@
"$(inherited)",
"-ObjC",
"-framework",
OCHamcrest,
"-framework",
IOKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -944,8 +942,6 @@
"$(inherited)",
"-ObjC",
"-framework",
OCHamcrest,
"-framework",
IOKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion Tests/UnitTests/Sources/GREYActionsTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ - (void)testTapDisabledControl {
UIControl *view = [[UIControl alloc] init];

// Mock out [GREYMatchers matcherForSufficientlyVisible] for a matcher that matches anything.
id mockMatcher = [OCMockObject mockForProtocol:@protocol(HCMatcher)];
id mockMatcher = [OCMockObject mockForProtocol:@protocol(GREYMatcher)];
OCMStub([mockMatcher matches:OCMOCK_ANY]).andReturn(@YES);
id mockGREYMatchers = OCMClassMock([GREYMatchers class]);
OCMStub([mockGREYMatchers matcherForSufficientlyVisible]).andReturn(mockMatcher);
Expand Down
1 change: 0 additions & 1 deletion Tests/UnitTests/Sources/GREYElementMatcherBlockTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
//

#import <EarlGrey/GREYElementMatcherBlock.h>
#import <OCHamcrest/HCStringDescription.h>

#import "GREYBaseTest.h"

Expand Down
8 changes: 2 additions & 6 deletions Tests/UnitTests/UnitTests.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
Expand Down Expand Up @@ -664,7 +664,7 @@
CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_MODULES = NO;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
Expand Down Expand Up @@ -794,8 +794,6 @@
OTHER_LDFLAGS = (
"-ObjC",
"-framework",
OCHamcrest,
"-framework",
IOKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -821,8 +819,6 @@
OTHER_LDFLAGS = (
"-ObjC",
"-framework",
OCHamcrest,
"-framework",
IOKit,
);
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down

0 comments on commit a52dff0

Please sign in to comment.