Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(511)

Side by Side Diff: third_party/ocmock/README.chromium

Issue 316873003: Add a workaround to compare types in mocked method (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add note in README.chromium and sync with upstream pull request Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/ocmock/OCMock/OCMBoxedReturnValueProvider.mm ('k') | third_party/ocmock/ocmock.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Name: ocmock 1 Name: ocmock
2 URL: https://github.com/erikdoe/ocmock 2 URL: https://github.com/erikdoe/ocmock
3 Version: unknown 3 Version: unknown
4 Revision: 8b8793cf29a5bac0541421ea06c7dff071afb25e 4 Revision: 8b8793cf29a5bac0541421ea06c7dff071afb25e
5 License: BSD with advertising clause 5 License: BSD with advertising clause
6 License File: License.txt 6 License File: License.txt
7 Security Critical: no 7 Security Critical: no
8 8
9 Description: 9 Description:
10 OCMock is an Objective-C implementation of mock objects. If you are unfamiliar 10 OCMock is an Objective-C implementation of mock objects. If you are unfamiliar
(...skipping 13 matching lines...) Expand all
24 Chromium alters all NSLogging of -[NSArray count] to compile under both 32 and 24 Chromium alters all NSLogging of -[NSArray count] to compile under both 32 and
25 64 bits. 25 64 bits.
26 26
27 Chromium also patches in e8a9cc97936bfa8be97706c5092110603745e708 for fixing 27 Chromium also patches in e8a9cc97936bfa8be97706c5092110603745e708 for fixing
28 unit tests broken with Xcode 5 due to the lack of copyWithZone: selector. 28 unit tests broken with Xcode 5 due to the lack of copyWithZone: selector.
29 29
30 Chromium also patches in 77400c22b5bafd8aaaa75f90a1d997838204577a that fixes 30 Chromium also patches in 77400c22b5bafd8aaaa75f90a1d997838204577a that fixes
31 the comparison of types between invocation return type description (which 31 the comparison of types between invocation return type description (which
32 changed from "c" to "B" on arm64) and NSValue objCType (which didn't change) 32 changed from "c" to "B" on arm64) and NSValue objCType (which didn't change)
33 on arm64 for BOOL values. 33 on arm64 for BOOL values.
34
35 Chromium does patch OCMBoxedReturnValueProvider.m to handle comparison of
36 return type and value type for C++ objects when compiling with clang and
37 using libc++ STL library. The file is renamed OCMBoxedReturnValueProvider.mm
38 to be compiled as an Objective-C++ class to allow detection of the C++ STL
39 library used. Pull request: https://github.com/erikdoe/ocmock/pull/97
OLDNEW
« no previous file with comments | « third_party/ocmock/OCMock/OCMBoxedReturnValueProvider.mm ('k') | third_party/ocmock/ocmock.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698