From: Zbigniew Jędrzejewski-Szmek Date: Mon, 27 Nov 2017 21:54:38 +0000 (+0000) Subject: test-hostname-util: add assert_se's to make coverity happy X-Git-Tag: v236~102^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7beb3baf16b5707441a1fb02de78223667b79188;p=thirdparty%2Fsystemd.git test-hostname-util: add assert_se's to make coverity happy --- diff --git a/src/test/test-hostname-util.c b/src/test/test-hostname-util.c index b73468ddbcf..329354831b6 100644 --- a/src/test/test-hostname-util.c +++ b/src/test/test-hostname-util.c @@ -110,27 +110,27 @@ static void test_read_etc_hostname(void) { close(fd); /* simple hostname */ - write_string_file(path, "foo", WRITE_STRING_FILE_CREATE); + assert_se(write_string_file(path, "foo", WRITE_STRING_FILE_CREATE) == 0); assert_se(read_etc_hostname(path, &hostname) == 0); assert_se(streq(hostname, "foo")); hostname = mfree(hostname); /* with comment */ - write_string_file(path, "# comment\nfoo", WRITE_STRING_FILE_CREATE); + assert_se(write_string_file(path, "# comment\nfoo", WRITE_STRING_FILE_CREATE) == 0); assert_se(read_etc_hostname(path, &hostname) == 0); assert_se(hostname); assert_se(streq(hostname, "foo")); hostname = mfree(hostname); /* with comment and extra whitespace */ - write_string_file(path, "# comment\n\n foo ", WRITE_STRING_FILE_CREATE); + assert_se(write_string_file(path, "# comment\n\n foo ", WRITE_STRING_FILE_CREATE) == 0); assert_se(read_etc_hostname(path, &hostname) == 0); assert_se(hostname); assert_se(streq(hostname, "foo")); hostname = mfree(hostname); /* cleans up name */ - write_string_file(path, "!foo/bar.com", WRITE_STRING_FILE_CREATE); + assert_se(write_string_file(path, "!foo/bar.com", WRITE_STRING_FILE_CREATE) == 0); assert_se(read_etc_hostname(path, &hostname) == 0); assert_se(hostname); assert_se(streq(hostname, "foobar.com")); @@ -138,7 +138,7 @@ static void test_read_etc_hostname(void) { /* no value set */ hostname = (char*) 0x1234; - write_string_file(path, "# nothing here\n", WRITE_STRING_FILE_CREATE); + assert_se(write_string_file(path, "# nothing here\n", WRITE_STRING_FILE_CREATE) == 0); assert_se(read_etc_hostname(path, &hostname) == -ENOENT); assert_se(hostname == (char*) 0x1234); /* does not touch argument on error */