]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/journal/test-journal-syslog.c
Always prefer our headers to system headers
[thirdparty/systemd.git] / src / journal / test-journal-syslog.c
CommitLineData
e88baee8
ZJS
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2011 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include "journald-syslog.h"
23#include "macro.h"
24
25static void test_syslog_parse_identifier(const char* str,
26 const char *ident, const char*pid, int ret) {
27 const char *buf = str;
7fd1b19b 28 _cleanup_free_ char *ident2 = NULL, *pid2 = NULL;
e88baee8
ZJS
29 int ret2;
30
31 ret2 = syslog_parse_identifier(&buf, &ident2, &pid2);
32
33 assert(ret == ret2);
899839b9
TA
34 assert(ident == ident2 || streq_ptr(ident, ident2));
35 assert(pid == pid2 || streq_ptr(pid, pid2));
e88baee8
ZJS
36}
37
38int main(void) {
39 test_syslog_parse_identifier("pidu[111]: xxx", "pidu", "111", 11);
40 test_syslog_parse_identifier("pidu: xxx", "pidu", NULL, 6);
41 test_syslog_parse_identifier("pidu xxx", NULL, NULL, 0);
42
43 return 0;
44}