diff options
author | Dan Williams <dcbw@redhat.com> | 2011-11-11 12:20:51 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-11-11 12:21:41 -0600 |
commit | ae3f1cd578e59245a6bff5cfd19f64f0c47f5de9 (patch) | |
tree | 5db2e66c1688643a58567bc97a58048b798b9c20 /libwmc/tests/test-wmc-utils.c | |
parent | 83c905837693f095d9e7c1bf9ac56d8290510f45 (diff) |
libwmc: add testcases that talk to the device
Diffstat (limited to 'libwmc/tests/test-wmc-utils.c')
-rw-r--r-- | libwmc/tests/test-wmc-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libwmc/tests/test-wmc-utils.c b/libwmc/tests/test-wmc-utils.c index c38694ae..3a1d76be 100644 --- a/libwmc/tests/test-wmc-utils.c +++ b/libwmc/tests/test-wmc-utils.c @@ -126,8 +126,8 @@ test_utils_encapsulate_uml290_wmc1 (void *f, void *data) gsize encap_len = 0; memcpy (inbuf, uml290_encap_src, sizeof (uml290_encap_src)); - encap_len = uml290_wmc_encapsulate (inbuf, sizeof (uml290_encap_src), - sizeof (inbuf), outbuf, sizeof (outbuf)); + encap_len = wmc_encapsulate (inbuf, sizeof (uml290_encap_src), + sizeof (inbuf), outbuf, sizeof (outbuf), TRUE); g_assert (encap_len == sizeof (encap_outbuf)); g_assert (memcmp (outbuf, encap_outbuf, encap_len) == 0); } |