From 6061e1de2a680b14b1a6e1eb2642d0a643910a73 Mon Sep 17 00:00:00 2001 From: William Hua Date: Thu, 4 Jul 2013 00:12:14 -0400 Subject: Disable experimental non-null for tests. --- debian/patches/disable-experimental-non-null.patch | 68 ++++++++++++++++++++++ debian/patches/series | 1 + 2 files changed, 69 insertions(+) create mode 100644 debian/patches/disable-experimental-non-null.patch (limited to 'debian') diff --git a/debian/patches/disable-experimental-non-null.patch b/debian/patches/disable-experimental-non-null.patch new file mode 100644 index 00000000..69698d37 --- /dev/null +++ b/debian/patches/disable-experimental-non-null.patch @@ -0,0 +1,68 @@ +--- a/tests/Makefile.am ++++ b/tests/Makefile.am +@@ -4,8 +4,7 @@ + + AM_CFLAGS = -w + AM_LDFLAGS = -lm +-AM_VALAFLAGS = --enable-experimental-non-null \ +- --metadatadir $(top_srcdir)/deps \ ++AM_VALAFLAGS = --metadatadir $(top_srcdir)/deps \ + --vapidir $(top_srcdir)/deps + + indicator_keyboard_test_SOURCES = main.vala \ +--- a/tests/main.vala ++++ b/tests/main.vala +@@ -146,7 +146,7 @@ + action_group.disconnect (signal_name); + + var state = action_group.get_action_state ("current"); +- var current = ((!) state).get_uint32 (); ++ var current = state.get_uint32 (); + assert (current == 2); + + try { +@@ -410,7 +410,7 @@ + action_group.disconnect (signal_name); + + var state = action_group.get_action_state ("indicator"); +- assert (((!) state).lookup ("visible", "b", out visible)); ++ assert (state.lookup ("visible", "b", out visible)); + assert (visible); + + loop = new MainLoop (null, false); +@@ -433,7 +433,7 @@ + action_group.disconnect (signal_name); + + state = action_group.get_action_state ("indicator"); +- assert (((!) state).lookup ("visible", "b", out visible)); ++ assert (state.lookup ("visible", "b", out visible)); + assert (!visible); + + loop = new MainLoop (null, false); +@@ -456,7 +456,7 @@ + action_group.disconnect (signal_name); + + state = action_group.get_action_state ("indicator"); +- assert (((!) state).lookup ("visible", "b", out visible)); ++ assert (state.lookup ("visible", "b", out visible)); + assert (visible); + } + +@@ -505,7 +505,7 @@ + action_group.disconnect (signal_name); + + var state = action_group.get_action_state ("current"); +- var current = ((!) state).get_uint32 (); ++ var current = state.get_uint32 (); + assert (current == 1); + + try { +@@ -538,7 +538,7 @@ + action_group.disconnect (signal_name); + + state = action_group.get_action_state ("current"); +- current = ((!) state).get_uint32 (); ++ current = state.get_uint32 (); + assert (current == 0); + + try { diff --git a/debian/patches/series b/debian/patches/series index a0ecd8c3..83bb2430 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1 +1,2 @@ default-icon-colour.patch +disable-experimental-non-null.patch -- cgit v1.2.3