]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/test/test-log.c
process-util: add getpid_cached() as a caching wrapper for getpid()
[thirdparty/systemd.git] / src / test / test-log.c
CommitLineData
877d54e9
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2012 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as published by
8 the Free Software Foundation; either version 2.1 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
20#include <stddef.h>
21#include <unistd.h>
22
f97b34a6 23#include "format-util.h"
877d54e9 24#include "log.h"
de0671ee 25#include "util.h"
877d54e9 26
ff524019
ZJS
27assert_cc(LOG_REALM_REMOVE_LEVEL(LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, LOG_FTP | LOG_DEBUG))
28 == LOG_REALM_SYSTEMD);
29assert_cc(LOG_REALM_REMOVE_LEVEL(LOG_REALM_PLUS_LEVEL(LOG_REALM_UDEV, LOG_LOCAL7 | LOG_DEBUG))
30 == LOG_REALM_UDEV);
31assert_cc((LOG_REALM_PLUS_LEVEL(LOG_REALM_SYSTEMD, LOG_LOCAL3 | LOG_DEBUG) & LOG_FACMASK)
32 == LOG_LOCAL3);
33assert_cc((LOG_REALM_PLUS_LEVEL(LOG_REALM_UDEV, LOG_USER | LOG_INFO) & LOG_PRIMASK)
34 == LOG_INFO);
35
877d54e9
LP
36int main(int argc, char* argv[]) {
37
38 log_set_target(LOG_TARGET_CONSOLE);
39 log_open();
40
41 log_struct(LOG_INFO,
de0671ee 42 "MESSAGE=Waldo PID="PID_FMT, getpid(),
877d54e9
LP
43 "SERVICE=piepapo",
44 NULL);
45
46 log_set_target(LOG_TARGET_JOURNAL);
47 log_open();
48
49 log_struct(LOG_INFO,
de0671ee 50 "MESSAGE=Foobar PID="PID_FMT, getpid(),
877d54e9
LP
51 "SERVICE=foobar",
52 NULL);
53
963ddb91 54 log_struct(LOG_INFO,
de0671ee 55 "MESSAGE=Foobar PID="PID_FMT, getpid(),
963ddb91
LP
56 "FORMAT_STR_TEST=1=%i A=%c 2=%hi 3=%li 4=%lli 1=%p foo=%s 2.5=%g 3.5=%g 4.5=%Lg",
57 (int) 1, 'A', (short) 2, (long int) 3, (long long int) 4, (void*) 1, "foo", (float) 2.5f, (double) 3.5, (long double) 4.5,
58 "SUFFIX=GOT IT",
59 NULL);
60
877d54e9
LP
61 return 0;
62}