diff options
author | Ben Chan <benchan@chromium.org> | 2018-11-07 10:26:23 -0800 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2018-11-08 17:00:59 +0100 |
commit | bf1b396596f2bbe9bc47c4ee5fb6176c3f14711e (patch) | |
tree | 4714ef2cb71c622aa646be060e885f4be4f8a410 /libmm-glib/tests | |
parent | 2522efb35964154cc5607f37941a7381c3eb0d09 (diff) |
tests: use memcmp() instead of g_assert_cmpmem() for now
g_assert_cmpmem() isn't available until glib 2.46, while the minimum
glib version required by ModemManager is 2.36. This patch replaces the
uses of g_assert_cmpmem() with memcmp() instead.
Diffstat (limited to 'libmm-glib/tests')
-rw-r--r-- | libmm-glib/tests/test-pco.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libmm-glib/tests/test-pco.c b/libmm-glib/tests/test-pco.c index c25606fc..086ce3ba 100644 --- a/libmm-glib/tests/test-pco.c +++ b/libmm-glib/tests/test-pco.c @@ -76,8 +76,7 @@ test_pco_list_add (void) pco_data = mm_pco_get_data (pco, &pco_data_size); g_assert (pco_data != NULL); g_assert_cmpuint (pco_data_size, ==, expected_pco->pco_data_size); - g_assert_cmpmem (pco_data, pco_data_size, - expected_pco->pco_data, expected_pco->pco_data_size); + g_assert_cmpint (memcmp (pco_data, expected_pco->pco_data, pco_data_size), ==, 0); } mm_pco_list_free (list); |