X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Ftest%2Ftest-strxcpyx.c;h=cb2309210fcfa6e29f2ee55012e2056197e79b7c;hb=4e7dff9b099bfbf7e367e339f5ddcd387caf78ae;hp=9b4dae805ff2d0bf9277aaa033dfdee4bf5798eb;hpb=c62c294fd521e5b65bb52f831773916bbc4cd90a;p=elogind.git diff --git a/src/test/test-strxcpyx.c b/src/test/test-strxcpyx.c index 9b4dae805..cb2309210 100644 --- a/src/test/test-strxcpyx.c +++ b/src/test/test-strxcpyx.c @@ -38,8 +38,8 @@ static void test_strpcpy(void) { space_left = strpcpy(&s, space_left, "r"); space_left = strpcpy(&s, space_left, "foo"); - assert(streq(target, "12345hey hey heywaldobar")); - assert(space_left == 0); + assert_se(streq(target, "12345hey hey heywaldobar")); + assert_se(space_left == 0); } static void test_strpcpyf(void) { @@ -48,11 +48,11 @@ static void test_strpcpyf(void) { size_t space_left; space_left = sizeof(target); - space_left = strpcpyf(&s, space_left, "space left: %ld. ", space_left); + space_left = strpcpyf(&s, space_left, "space left: %zd. ", space_left); space_left = strpcpyf(&s, space_left, "foo%s", "bar"); - assert(streq(target, "space left: 25. foobar")); - assert(space_left == 3); + assert_se(streq(target, "space left: 25. foobar")); + assert_se(space_left == 3); } static void test_strpcpyl(void) { @@ -64,8 +64,8 @@ static void test_strpcpyl(void) { space_left = strpcpyl(&s, space_left, "waldo", " test", " waldo. ", NULL); space_left = strpcpyl(&s, space_left, "Banana", NULL); - assert(streq(target, "waldo test waldo. Banana")); - assert(space_left == 1); + assert_se(streq(target, "waldo test waldo. Banana")); + assert_se(space_left == 1); } static void test_strscpy(void) { @@ -75,8 +75,8 @@ static void test_strscpy(void) { space_left = sizeof(target); space_left = strscpy(target, space_left, "12345"); - assert(streq(target, "12345")); - assert(space_left == 20); + assert_se(streq(target, "12345")); + assert_se(space_left == 20); } static void test_strscpyl(void) { @@ -86,8 +86,8 @@ static void test_strscpyl(void) { space_left = sizeof(target); space_left = strscpyl(target, space_left, "12345", "waldo", "waldo", NULL); - assert(streq(target, "12345waldowaldo")); - assert(space_left == 10); + assert_se(streq(target, "12345waldowaldo")); + assert_se(space_left == 10); } int main(int argc, char *argv[]) {