diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 20:26:11 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 20:26:11 +0100 |
| commit | fb50a548f75a835d0edeccc57f28df62b059d481 (patch) | |
| tree | 2cb8cf57801185e49931becb3004b8fdb31fd209 /tests | |
| parent | 0b0caab1d25803cbd08e5b4c2c30074e6b823964 (diff) | |
temp log for more info about semid_ds fail
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/core/sys/posix/structs.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/core/sys/posix/structs.odin b/tests/core/sys/posix/structs.odin index 66b7cb0e1..e3b8eaa08 100644 --- a/tests/core/sys/posix/structs.odin +++ b/tests/core/sys/posix/structs.odin @@ -53,6 +53,8 @@ execute_struct_checks :: proc(t: ^testing.T) { defer delete(odin_buf) odin_out := get_output(t, &odin_buf, #directory + "/structs/odin_structs", nil) + log.infof("C:\n%s\n\nOdin: %s", c_out, odin_out) + testing.expectf(t, c_out == odin_out, "The C output and Odin output differ!\nC output:\n%s\n\n\n\nOdin Output:\n%s", c_out, odin_out) /* ----------- HELPERS ----------- */ |