X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Futils_mount_test.c;h=c084debe46381d54e6ffb95cff612e392930ced6;hb=f66916deea905254061bb07245e007471faf2ecf;hp=b4cb43219a0e63b1ff8200ee79c3e2953704ca9c;hpb=83bd4369fc36851bb9a92d0dd3a9d3bc6a408fdd;p=collectd.git diff --git a/src/utils_mount_test.c b/src/utils_mount_test.c index b4cb4321..c084debe 100644 --- a/src/utils_mount_test.c +++ b/src/utils_mount_test.c @@ -24,8 +24,10 @@ * Florian octo Forster */ -#include "testing.h" #include "collectd.h" + +#include "common.h" +#include "testing.h" #include "utils_mount.h" #if HAVE_LIBKSTAT @@ -80,16 +82,25 @@ DEF_TEST(cu_mount_getoptionvalue) { char line_opts[] = "foo=one,bar=two,qux=three"; char line_bool[] = "one,two,three"; - - EXPECT_EQ_STR ("one", cu_mount_getoptionvalue (line_opts, "foo=")); - EXPECT_EQ_STR ("two", cu_mount_getoptionvalue (line_opts, "bar=")); - EXPECT_EQ_STR ("three", cu_mount_getoptionvalue (line_opts, "qux=")); - OK (NULL == cu_mount_getoptionvalue (line_opts, "unknown=")); - - EXPECT_EQ_STR ("", cu_mount_getoptionvalue (line_bool, "one")); - EXPECT_EQ_STR ("", cu_mount_getoptionvalue (line_bool, "two")); - EXPECT_EQ_STR ("", cu_mount_getoptionvalue (line_bool, "three")); - OK (NULL == cu_mount_getoptionvalue (line_bool, "four")); + char *v; + + EXPECT_EQ_STR ("one", v = cu_mount_getoptionvalue (line_opts, "foo=")); + sfree (v); + EXPECT_EQ_STR ("two", v = cu_mount_getoptionvalue (line_opts, "bar=")); + sfree (v); + EXPECT_EQ_STR ("three", v = cu_mount_getoptionvalue (line_opts, "qux=")); + sfree (v); + OK (NULL == (v = cu_mount_getoptionvalue (line_opts, "unknown="))); + sfree (v); + + EXPECT_EQ_STR ("", v = cu_mount_getoptionvalue (line_bool, "one")); + sfree (v); + EXPECT_EQ_STR ("", v = cu_mount_getoptionvalue (line_bool, "two")); + sfree (v); + EXPECT_EQ_STR ("", v = cu_mount_getoptionvalue (line_bool, "three")); + sfree (v); + OK (NULL == (v = cu_mount_getoptionvalue (line_bool, "four"))); + sfree (v); return (0); }