]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/test/test-xml.c
ASSERT_STREQ for simple cases
[thirdparty/systemd.git] / src / test / test-xml.c
index 93b0e7c3fbb447878f8ecaed096fd115d047eed1..6367f2726373bed36e6de8bd5241fa951fb2a04d 100644 (file)
@@ -1,28 +1,10 @@
-/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
-
-/***
-  This file is part of systemd.
-
-  Copyright 2013 Lennart Poettering
-
-  systemd is free software; you can redistribute it and/or modify it
-  under the terms of the GNU Lesser General Public License as published by
-  the Free Software Foundation; either version 2.1 of the License, or
-  (at your option) any later version.
-
-  systemd is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-  Lesser General Public License for more details.
-
-  You should have received a copy of the GNU Lesser General Public License
-  along with systemd; If not, see <http://www.gnu.org/licenses/>.
-***/
+/* SPDX-License-Identifier: LGPL-2.1-or-later */
 
 #include <stdarg.h>
 
+#include "alloc-util.h"
 #include "string-util.h"
-#include "util.h"
+#include "tests.h"
 #include "xml.h"
 
 static void test_one(const char *data, ...) {
@@ -47,7 +29,7 @@ static void test_one(const char *data, ...) {
                         break;
 
                 nn = va_arg(ap, const char *);
-                assert_se(streq_ptr(nn, name));
+                ASSERT_STREQ(nn, name);
         }
 
         va_end(ap);
@@ -55,6 +37,8 @@ static void test_one(const char *data, ...) {
 
 int main(int argc, char *argv[]) {
 
+        test_setup_logging(LOG_DEBUG);
+
         test_one("", XML_END);
 
         test_one("<foo></foo>",