diff options
Diffstat (limited to 'tests/demo.c')
| -rw-r--r-- | tests/demo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/demo.c b/tests/demo.c index cfa879da..c38dd3b9 100644 --- a/tests/demo.c +++ b/tests/demo.c @@ -7,6 +7,7 @@ test_main("Things work", { x = 1; y = 2; test_convey("X is one", { + test_debugf("A logged message."); test_assert(x == 1); }); test_convey("Y is two", { @@ -38,7 +39,7 @@ test_main("Things work", { }); test_convey("Middle (Skip?)", { test_so(9 - 1 == 8); - test_skip(); + test_skip("forced skip"); test_so(0 == 1); }); test_convey("Ending", { |
