Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode7 Support #354

Merged
merged 21 commits into from
Sep 16, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
37ed287
Hack together support for XCTest under Xcode7
tjarratt Jun 13, 2015
1954de6
Add more specs to XCTest support test bundle
tjarratt Jul 1, 2015
88cd8fd
Temporarily change symbolicator so tests pass with xcode 7 beta
Jul 21, 2015
49b3a62
Leave a breadcrumb trail for next person debugging symbolication
Jul 22, 2015
3cc7d98
Consolidate test setup between Xcode 6 and 7
Jul 22, 2015
40f9f1b
Don't run SenTestingKit specs on Xcode 7
tjarratt Jul 22, 2015
e239470
Just warn when deprecated OCUnit / SentestingKit specs are run
tjarratt Jul 22, 2015
a55cc04
Use heuristics to avoid selecting the wrong dyld image for symbolication
Aug 12, 2015
bf4a38e
Remove SenTestingKit and OCUnit tests
tjarratt Aug 13, 2015
e86a08b
Call -runDidComplete on the reporter dispatcher when running a test b…
Sep 1, 2015
b2151cc
Fix regression causing the reporters to not output on Xcode 6
Sep 4, 2015
6c48bfc
Determine the atos path for symbolication based on compile-time DEVEL…
Sep 12, 2015
b277408
Fix broken header-copy item
Sep 12, 2015
d945880
Make the OS X spec bundle pass under both Xcode 6 and 7
Sep 12, 2015
cb93da0
Miscellaneous cleanups to the test bundle bootstrap code
Sep 14, 2015
ea81dec
Reduce code duplication between running test suites and test bundles
Sep 14, 2015
59a7650
Don’t use methods not available on iOS 7
Sep 14, 2015
6f4dd05
Reintroduce an iOS test bundle spec
Sep 14, 2015
fdd2f66
Remove the Xcode 7 note in the README
Sep 14, 2015
d54eece
Fix warning about SCRCException when bootstrapping Cedar
Sep 14, 2015
94e8a8d
Update podspec to produce the DEVELOPER_BIN_DIR preprocessor macro
xtreme-priyanka-ranjan Sep 14, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Cedar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ Pod::Spec.new do |s|
# https://github.com/pivotal/cedar/issues/47
s.xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++0x',
'CLANG_CXX_LIBRARY' => 'libc++'
'CLANG_CXX_LIBRARY' => 'libc++',
'OTHER_CFLAGS' => '-DDEVELOPER_BIN_DIR=@\"${DEVELOPER_BIN_DIR}\"'
}
s.libraries = 'c++'
s.requires_arc = false
Expand Down
581 changes: 105 additions & 476 deletions Cedar.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions OCUnitAppLogicTests/OCUnitAppLogicTests-Info.plist

This file was deleted.

7 changes: 0 additions & 7 deletions OCUnitAppLogicTests/OCUnitAppLogicTests-Prefix.pch

This file was deleted.

14 changes: 0 additions & 14 deletions OCUnitAppLogicTests/OCUnitAppLogicTests.mm

This file was deleted.

18 changes: 0 additions & 18 deletions OCUnitAppLogicTests/OCUnitAppLogicTestsWithSenTestingKit.m

This file was deleted.

2 changes: 0 additions & 2 deletions OCUnitAppLogicTests/en.lproj/InfoPlist.strings

This file was deleted.

106 changes: 0 additions & 106 deletions OCUnitAppTests/OCUnitApplicationTestsWithSenTestingKit.mm

This file was deleted.

Loading