diff options
author | Tom Gundersen <teg@jklm.no> | 2015-02-06 11:49:07 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-02-06 11:49:39 +0100 |
commit | b621bfd2311a13311a45ccd5e31a9ce3214895fe (patch) | |
tree | 0dd8f38e131a590a9416fcc5c852d0e55326f6a3 /src/libsystemd/sd-rtnl/test-rtnl.c | |
parent | 1c25683e0f40c6169676cc44fa1897082597feec (diff) |
sd-rtnl: fix creation of synthetic error replies
Diffstat (limited to 'src/libsystemd/sd-rtnl/test-rtnl.c')
-rw-r--r-- | src/libsystemd/sd-rtnl/test-rtnl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libsystemd/sd-rtnl/test-rtnl.c b/src/libsystemd/sd-rtnl/test-rtnl.c index 72d8fe2273..ed60b3cb45 100644 --- a/src/libsystemd/sd-rtnl/test-rtnl.c +++ b/src/libsystemd/sd-rtnl/test-rtnl.c @@ -353,6 +353,13 @@ static void test_get_addresses(sd_rtnl *rtnl) { } } +static void test_message(void) { + _cleanup_rtnl_message_unref_ sd_rtnl_message *m = NULL; + + assert_se(rtnl_message_new_synthetic_error(-ETIMEDOUT, 1, &m) >= 0); + assert_se(sd_rtnl_message_get_errno(m) == -ETIMEDOUT); +} + int main(void) { sd_rtnl *rtnl; sd_rtnl_message *m; @@ -361,6 +368,8 @@ int main(void) { int if_loopback; uint16_t type; + test_message(); + test_match(); test_multiple(); |