From 3cf48234b94a79c6000cbd14bb361f72a761440b Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Sat, 5 Apr 2025 23:04:14 -0600 Subject: [PATCH] [hb-test.h] Remove unsed functions --- test/api/hb-test.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/test/api/hb-test.h b/test/api/hb-test.h index 648f452e4..fd36444f2 100644 --- a/test/api/hb-test.h +++ b/test/api/hb-test.h @@ -109,43 +109,6 @@ hb_test_run (void) return g_test_run (); } -/* Bugzilla helpers */ - -static inline void -hb_test_bug (const char *uri_base, unsigned int number) -{ - char *s = g_strdup_printf ("%u", number); - - g_test_bug_base (uri_base); - g_test_bug (s); - - g_free (s); -} - -static inline void -hb_test_bug_freedesktop (unsigned int number) -{ - hb_test_bug ("https://bugs.freedesktop.org/", number); -} - -static inline void -hb_test_bug_gnome (unsigned int number) -{ - hb_test_bug ("https://bugzilla.gnome.org/", number); -} - -static inline void -hb_test_bug_mozilla (unsigned int number) -{ - hb_test_bug ("https://bugzilla.mozilla.org/", number); -} - -static inline void -hb_test_bug_redhat (unsigned int number) -{ - hb_test_bug ("https://bugzilla.redhat.com/", number); -} - /* Wrap glib test functions to simplify. Should have been in glib already. */