[test] Add test for hb_set_get_min() bug Failing now. Bug 64476 - Typo in hb_set_t.get_min()
diff --git a/test/api/test-set.c b/test/api/test-set.c index b9e7ef8..90d0437 100644 --- a/test/api/test-set.c +++ b/test/api/test-set.c
@@ -64,6 +64,10 @@ hb_set_clear (s); test_empty (s); + hb_set_add (s, 33000); + test_not_empty (s); + hb_set_clear (s); + hb_set_add_range (s, 10, 29); test_not_empty (s); g_assert (hb_set_has (s, 13));