On Mon Sep 26 21:52:01 2022 +0000, Joel Holdsworth wrote:
That sounds like an nice easy path forward. One practical question. How do I make the test case `todo_wine` in some cases, an not in others? Do I just have to comment out the test? Or is there a trick to indicate that inconsistency between plaforms is expected?
Like this: ``` todo_wine_if (my_todo_flag) ok (returned_value == expected_value, "expected %x, got %x\n", expected_value, returned_value); ```