aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Minor fixesGravatar Thomas Van Lenten2015-10-20
| | | | | - Support for GCC_WARN_STRICT_SELECTOR_MATCH - Fix long busted XTCAssertEqualCStrings
* Update iossim for Xcode 7 supportGravatar Thomas Van Lenten2015-10-20
| | | | | | | | As of Xcode 7, supportedDeviceTypesByName was replaced by supportedDeviceTypesByAlias. This is from latest chromium build. Downstream hash is 9dd179a339c0457f8754069e0774b38f69c258a8. The latest merge was to upstream ef05b7da00844c0d500c4a7f20d4095dab56e7fe
* Merge pull request #100 from thomasvl/method_check_tweakGravatar Thomas Van Lenten2015-09-21
|\ | | | | | | | | Extract the DL_info check before the loop Extract the DL_info check before the loop because it doesn't depend on anything in the loop.
| * Extract the DL_info check before the loop because it doesn't depend on ↵Gravatar Thomas Van Lenten2015-09-21
|/ | | | anything in the loop.
* Merge pull request #99 from thomasvl/update_sourcesGravatar Thomas Van Lenten2015-09-08
|\ | | | | Update sources
| * Let Xcode rewrite the strings filesGravatar Thomas Van Lenten2015-09-08
| |
| * whitespace fixupGravatar Thomas Van Lenten2015-09-08
| |
| * Relay the real argc/argv to testing::InitGoogleTestGravatar Thomas Van Lenten2015-09-08
| |
| * Kill off the Spotlight and Xcode plugins as they haven't been maintained.Gravatar Thomas Van Lenten2015-09-08
| |
| * keep the scale when resizing an imageGravatar Thomas Van Lenten2015-09-08
| |
| * Use _Static_assert if supportedGravatar Thomas Van Lenten2015-09-08
| |
| * Add pointers to newer classes provided by the OSGravatar Thomas Van Lenten2015-09-08
| |
| * support invoking the script via symlinksGravatar Thomas Van Lenten2015-09-08
| |
| * add pragmas to suppress deprecated warnings from newer SDKsGravatar Thomas Van Lenten2015-09-08
| |
| * Fix up comments on filterGravatar Thomas Van Lenten2015-09-08
| |
| * Minor update for Xcode 6 unittesting wrapperGravatar Thomas Van Lenten2015-09-08
|/
* try to escape things to avoid md markupGravatar Thomas Van Lenten2015-08-20
|
* Split back out ReleaseNotes, make README general info.Gravatar Thomas Van Lenten2015-08-20
|
* Merge pull request #98 from thomasvl/fixesGravatar gmrobbins2015-08-18
|\ | | | | Update the project for github migration
| * Update the project for github migrationGravatar Thomas Van Lenten2015-08-18
|/ | | | | | - Update URL - Add README.md/License/Contributing info to be up to spec. - Remove a bunch of executable bits on sources.
* Make GTMSMJobRemove() have the same behavior on OSX 10.10+ as it has onGravatar thomasvl2015-01-27
| | | | | | | | | | previous OSX versions. In OSX 10.10+, launch_msg(LAUNCH_KEY_REMOVEJOB, ...) returns the error EINPROGRESS if the job was running at the time it was removed. In OSX 10.9 and earlier, the same function call returns success. This CL makes GTMSMJobRemove() treat the error EINPROGRESS as success on OSX 10.10+.
* Allow GTMABAddressBook to compile with the deployment target set to iOS 7.Gravatar thomasvl2015-01-23
| | | | | The deprecation message in Apple's headers specify calling ABPersonGetCompositeNameFormatForRecord(NULL) instead of ABPersonGetCompositeNameFormat()
* Updated iossim binary with improved crash detection for Xcode 6.1.Gravatar thomasvl2014-11-17
| | | | | (Source bassed of chromium hash 10318845b6eaca2658d96df562c34579df5a08f2)
* Change output when simulator fails to open to be a note.Gravatar thomasvl2014-11-17
|
* Fix iOS arm64 build related error in GTMAddressBook.Gravatar thomasvl2014-11-17
| | | | | Under arm64, CFIndex (which was used for GTMABPropertyType) has gone 64-bit but ABPropertyType is still 32 bits in the iOS AddressBook.framework. So all the places where we're passing GTMABPropertyTypes where it expects an ABPropertyType break on the 64->32 truncation warning.
* Rebuild of iossim to get things working with Xcode 6.1.Gravatar thomasvl2014-11-06
|
* Fix compilation against iOS 7 deployment target.Gravatar thomasvl2014-10-29
|
* Updated iossim build that handles iOS 8+ (rather then just 8.0)Gravatar thomasvl2014-10-29
|
* Fix up GTMGoogleTestRunner for Xcode 6.1.Gravatar thomasvl2014-10-29
| | | | | - We now add selectors to the class because Xcode 6.1 appears to take the test name from the selector instead of from the -[XCTest name] method.
* After switching to Xcode 6, the Simulator sometimes fails to open causing theGravatar thomasvl2014-10-29
| | | | | tests to fail. The projects that have more test targets are more vulnerable to the issue. When the simulator fails to open, we should reset it and try again.
* Cache the verbosity level instead of fetching constantly.Gravatar thomasvl2014-10-29
|
* Fix support for file extensions, due to off-by-1 error from not taking the ↵Gravatar gtm.daemon2014-10-10
| | | | | | | | | | | | | | period into account for the total suffix-length to pass to mkstemps. Example failure: template = myTempXXX.ext pathExtension = "ext" [pathExtension length] = 3 Need for mkstemps: suffix-length = 4 (".ext") DELTA=6 (5 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=6
* Fix formatting for OS X 10.4 to avoid usage of %z and %t.Gravatar gtm.daemon2014-10-09
| | | | | | Change stringWithContentsOfFile to explicitly specify the encoding (again, 10.4 fix) DELTA=85 (4 added, 2 deleted, 79 changed) DELTA_BY_EXTENSION=c=3,m=80
* Use 'iOS Simulator' for Xcode6 and 'iPhone Simulator' for earlier versions ↵Gravatar gtm.daemon2014-10-08
| | | | | | to kill the simulator process. DELTA=8 (7 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=sh=8
* Update XCTAssertNotEqualStrings and XCTAssertEqualStrings to use %zd.Gravatar gtm.daemon2014-09-29
| | | | DELTA=2 (0 added, 0 deleted, 2 changed) DELTA_BY_EXTENSION=h=2
* Use our constant instead of the system header one to avoid a deprecated warning.Gravatar gtm.daemon2014-09-22
| | | | | | Turn off deprecated warnings when we do have to use the symbols. DELTA=17 (16 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=h=5,m=12
* Quote DEVELOPER_BIN_DIR in case it has spaces.Gravatar gtm.daemon2014-09-22
| | | | | | This is required if the Xcode path contains "Xcode6-Beta6 2.app" for example. DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=sh=1
* Updated iossim from chromium (d7875158bb93ef51cc3bfc59e23ca35ed50c5042).Gravatar gtm.daemon2014-08-27
| | | | | Adds support for Xcode 5.x and Xcode 6. Note: Xcode 6 renamed the simulator device types, so any values being passed will need to update.
* CGSizeZero is a constant, not a function.Gravatar gtm.daemon2014-08-27
| | | | DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=1
* Protect against inserting nil into dictionaries.Gravatar gtm.daemon2014-08-27
| | | | | | | | The iOS 7 APIs for drawing strings require NSDictionary parameters so make sure there's no way to insert a nil value when creating the dictionaries or the app will crash. DELTA=35 (10 added, 0 deleted, 25 changed) DELTA_BY_EXTENSION=m=35
* Restore GTMFadeTruncatingLabel's ability to render text in any color other thanGravatar gtm.daemon2014-08-26
| | | | | | black. DELTA=16 (14 added, 1 deleted, 1 changed) DELTA_BY_EXTENSION=m=15
* Fix compilation against iOS 7 deployment target.Gravatar gtm.daemon2014-08-20
| | | | DELTA=35 (34 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=35
* General fixes for GTM.Gravatar gtm.daemon2014-08-01
| | | | | | | | | a) only define GTM_IPHONE_USE_SENTEST if it hasn't been defined on Mac. It's a horrible name, but it does control us using SENTEST instead of XCTest. b) Object is now found in the runtime on both iOS and MacOS c) MethodCheck had a potential memory leak DELTA=47 (18 added, 5 deleted, 24 changed) DELTA_BY_EXTENSION=h=30,m=12
* Typo in XCTAssertEqualCStringsGravatar gtm.daemon2014-07-30
| | | | | | Means it doens't compile when that macro is used. DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=h=1
* Add a comment pointing to Xcode 6's XCTestExpectation for testing ↵Gravatar gtm.daemon2014-07-25
| | | | | | asynchronous behavior. DELTA=4 (4 added, 0 deleted, 0 changed) DELTA_BY_EXTENSION=h=4
* Fix up GTMSenTestCase so that it pulls in SenTestingKit on Xcode < 5.Gravatar gtm.daemon2014-06-16
| | | | DELTA=2 (1 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=h=2
* Fix up GTMMethodCheck to work with ENABLE_STRICT_OBJC_MSGSEND=YES.Gravatar gtm.daemon2014-06-09
| | | | | | Also ignores another class which does not inherit from NSObject. DELTA=4 (3 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=4
* Fix up the gate on GTMSenTestCase and iOS 8 so that it is safer in case a ↵Gravatar gtm.daemon2014-06-06
| | | | | | | | new version of Xcode 5 comes out with __IPHONE_8_0 declared in the iOS 7 SDK. DELTA=2 (0 added, 0 deleted, 2 changed) DELTA_BY_EXTENSION=h=2
* Fix up the XCTest support in GTMGravatar gtm.daemon2014-06-04
| | | | DELTA=42 (30 added, 0 deleted, 12 changed) DELTA_BY_EXTENSION=h=42
* Fixes 64-bit compile time warnings - ↵Gravatar gtm.daemon2014-06-04
| | | | | | googlemac/opensource/google-toolbox-for-mac/ DELTA=1 (0 added, 0 deleted, 1 changed) DELTA_BY_EXTENSION=m=1