mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-27 23:08:31 +00:00
Get MbedTLS and its unit tests passing AARCH64
This commit is contained in:
parent
5e2f7f7ced
commit
4edbc98811
37 changed files with 632 additions and 725 deletions
|
@ -218,3 +218,18 @@ void testlib_showerror_expect_false(int line, //
|
|||
testlib_showerror_(line, wantcode, gotcode, FREED_want, FREED_got, fmt, va);
|
||||
va_end(va);
|
||||
}
|
||||
|
||||
void testlib_showerror_expect_matrixeq(int line, //
|
||||
const char *wantcode, //
|
||||
const char *gotcode, //
|
||||
char *FREED_want, //
|
||||
char *FREED_got, //
|
||||
const char *fmt, //
|
||||
...) {
|
||||
va_list va;
|
||||
testlib_showerror_macro = "EXPECT_MATRIXEQ";
|
||||
testlib_showerror_symbol = "=";
|
||||
va_start(va, fmt);
|
||||
testlib_showerror_(line, wantcode, gotcode, FREED_want, FREED_got, fmt, va);
|
||||
va_end(va);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue