From 545b34108a6752c6a6554f4bda1cafda79e8aabe Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sun, 16 Jun 2013 23:32:58 -0500 Subject: first steps at fixing the tests that broke during GMenuification --- tests/Makefile.am | 8 ++------ tests/test-device.cc | 7 ++++--- 2 files changed, 6 insertions(+), 9 deletions(-) (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am index a194505..d8e329e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -23,17 +23,13 @@ AM_CXXFLAGS = $(GTEST_CXXFLAGS) ### TEST_LIBS = \ - $(top_builddir)/src/.libs/libpower.a \ - $(INDICATOR_LIBS) \ - $(UPOWER_LIBS) \ - $(COVERAGE_LDFLAGS) \ + $(COVERAGE_LDFLAGS) \ $(XORG_GTEST_LDFLAGS) \ libgtest.a TEST_CPPFLAGS = \ $(AM_CPPFLAGS) \ - $(UPOWER_CFLAGS) \ - $(INDICATOR_CFLAGS) + $(SERVICE_DEPS_CFLAGS) BUILT_SOURCES += gschemas.compiled CLEANFILES += gschemas.compiled diff --git a/tests/test-device.cc b/tests/test-device.cc index ab329f1..9c48699 100644 --- a/tests/test-device.cc +++ b/tests/test-device.cc @@ -17,9 +17,10 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +#include #include #include "device.h" -#include "indicator-power.h" +#include "service.h" class DeviceTest : public ::testing::Test { @@ -597,11 +598,11 @@ TEST_F(DeviceTest, ChoosePrimary) INDICATOR_POWER_DEVICE_TIME, guint64(tests[j].time), INDICATOR_POWER_DEVICE_PERCENTAGE, tests[j].percentage, NULL); - ASSERT_EQ (a, indicator_power_choose_primary_device(device_list)); + ASSERT_EQ (a, indicator_power_service_choose_primary_device(device_list)); /* reverse the list to check that list order doesn't matter */ device_list = g_slist_reverse (device_list); - ASSERT_EQ (a, indicator_power_choose_primary_device(device_list)); + ASSERT_EQ (a, indicator_power_service_choose_primary_device(device_list)); } } -- cgit v1.2.3