Eina tests: suppress warnings over deprecated functions

This commit is contained in:
Jean-Philippe Andre 2015-04-20 15:14:47 +09:00
parent 6e587b5479
commit c2a9dd3a31
1 changed files with 5 additions and 0 deletions

View File

@ -98,6 +98,10 @@ START_TEST(binbuf_remove)
}
END_TEST
/* eina_binbuf_manage_new_length and eina_binbuf_manage_read_only_new_length
* are deprecated */
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
START_TEST(binbuf_manage_simple)
{
Eina_Binbuf *buf;
@ -154,6 +158,7 @@ START_TEST(binbuf_manage_read_only_simple)
eina_shutdown();
}
END_TEST
#pragma GCC diagnostic pop
START_TEST(binbuf_insert)
{