-
Notifications
You must be signed in to change notification settings - Fork 43
/
ChangeLog
40 lines (35 loc) · 1.91 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
2017-07-31 Franklin "Snaipe" Mathieu <[email protected]>
* mimick: Version 0.3.0.
* api: **Breaking**: Fixed MMK_MATCHER_BIT_CMP being an invalid enum value.
* api: **Breaking**: Renamed neq,leq,geq to ne,le,ge.
* api: **Breaking**: Use comparisons operators when comparing parameters
rather than using memcmp. This is more correct as memcmp doesn't
account for endianness, but non-comparable types are no longer supported
as parameters.
* api: Added .noabort option to mmk_mock, to return MMK_MOCK_INVALID
instead of aborting if the mock initialization fails.
* api: Fixed comparison matchers always matching for equality.
* api: Fixed mmk_that not working.
* arch: (x86_64,system-v) Fixed rax not being preserved when calling stubs.
* arch: Added AArch64 support.
* core: **Breaking**: Ignore zero .times values in mmk_verify.
* core: Better symbol lookup code, causing less crashes overall.
* core: Fixed "self" selector not working.
* core: Fixed crashes with PIEs.
* core: Fixed linux crash when a symbol isn't found.
* core: Fixed vfprintf and abort mocks breaking mimick's panic handling.
2016-04-09 Franklin "Snaipe" Mathieu <[email protected]>
* mimick: version 0.2.0.
* api: **Breaking**: Removed parameter names from mmk_mock_define.
* api: **Breaking**: Removed mmk_mock_vdefine (mmk_mock_define now accepts
void as a return type).
* api: Added error handling for stub & mock creation.
* api: Added support for variadic functions.
* arch: Added ARM support.
* core: Fixed sym selector not working for elf and mach-o.
* doc: Added doxygen documentation in mimick.h.
* matchers: **Breaking**: Mixing matchers and non-matchers parameters
is now unsupported.
* matchers: Added mmk_eq.
2016-03-30 Franklin "Snaipe" Mathieu <[email protected]>
* mimick: Initial release