[grilo-plugins/wip/hadess/warnings-fixes: 6/11] tests: fix warnings on tmdb full resolution
- From: Bastien Nocera <hadess src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [grilo-plugins/wip/hadess/warnings-fixes: 6/11] tests: fix warnings on tmdb full resolution
- Date: Tue, 12 Feb 2019 01:47:53 +0000 (UTC)
commit 68161931bd74cafb1092e0eb559e9359fd1d1ca3
Author: Victor Toso <me victortoso com>
Date: Fri Oct 21 23:59:19 2016 +0200
tests: fix warnings on tmdb full resolution
warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
guint count = grl_data_length (GRL_DATA (media), GRL_METADATA_KEY_REGION);
^~~~~
https://bugzilla.gnome.org/show_bug.cgi?id=768557
tests/tmdb/test_tmdb_full_resolution.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/tests/tmdb/test_tmdb_full_resolution.c b/tests/tmdb/test_tmdb_full_resolution.c
index 64c7947..ea50781 100644
--- a/tests/tmdb/test_tmdb_full_resolution.c
+++ b/tests/tmdb/test_tmdb_full_resolution.c
@@ -77,6 +77,8 @@ test_full_resolution (void)
GrlKeyID backdrop, posters, imdb_id;
GrlOperationOptions *options = NULL;
GrlMedia *media = NULL;
+ GrlSource *source;
+ guint count;
test_setup_tmdb ();
@@ -92,7 +94,7 @@ test_full_resolution (void)
g_assert (media != NULL);
grl_media_set_title (media, "Sherlock Holmes");
- GrlSource *source = test_get_source();
+ source = test_get_source();
g_assert (source);
options = grl_operation_options_new (NULL);
g_assert (options != NULL);
@@ -132,8 +134,7 @@ test_full_resolution (void)
g_assert_cmpint (grl_data_length (GRL_DATA (media), GRL_METADATA_KEY_DIRECTOR), ==, 2);
g_assert_cmpstr (grl_data_get_string (GRL_DATA (media), GRL_METADATA_KEY_DIRECTOR), ==, "Guy Ritchie");
-
- guint count = grl_data_length (GRL_DATA (media), GRL_METADATA_KEY_REGION);
+ count = grl_data_length (GRL_DATA (media), GRL_METADATA_KEY_REGION);
g_assert_cmpint (count, ==, 8);
test_region_certificate (media, "GB", "12A");
test_region_certificate (media, "FR", ""); /* TODO: Should this be here? */
@@ -154,6 +155,8 @@ test_full_resolution (void)
int
main(int argc, char **argv)
{
+ gint result;
+
g_setenv ("GRL_PLUGIN_PATH", GRILO_PLUGINS_TESTS_TMDB_PLUGIN_PATH, TRUE);
g_setenv ("GRL_PLUGIN_LIST", TMDB_PLUGIN_ID, TRUE);
@@ -167,7 +170,7 @@ main(int argc, char **argv)
g_test_add_func ("/tmdb/full-resolution", test_full_resolution);
- gint result = g_test_run ();
+ result = g_test_run ();
grl_deinit ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]