]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/login/test-login-shared.c
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / login / test-login-shared.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
35375afe
ZJS
2/***
3 This file is part of systemd.
4
5 Copyright 2013 Zbigniew Jędrzejewski-Szmek
6
7 systemd is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19***/
20
a095315b 21#include "login-util.h"
cf0fbc49 22#include "macro.h"
35375afe
ZJS
23
24static void test_session_id_valid(void) {
25 assert_se(session_id_valid("c1"));
26 assert_se(session_id_valid("1234"));
27
28 assert_se(!session_id_valid("1-2"));
29 assert_se(!session_id_valid(""));
30 assert_se(!session_id_valid("\tid"));
31}
32
33int main(int argc, char* argv[]) {
1e5413f7
ZJS
34 log_parse_environment();
35 log_open();
36
35375afe
ZJS
37 test_session_id_valid();
38
39 return 0;
40}