]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/test/test-daemon.c
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / test / test-daemon.c
index a7cb4262824846d97a6b33e914142d57f39eb859..a4b96da0457331f1fa0d3c42c6620241ca4b4646 100644 (file)
@@ -1,31 +1,23 @@
-/***
-  This file is part of systemd.
-
-  Copyright 2010 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+ */
 
 #include <unistd.h>
 
 #include "sd-daemon.h"
 
+#include "parse-util.h"
 #include "strv.h"
 
-int main(int argc, char*argv[]) {
+int main(int argc, char *argv[]) {
         _cleanup_strv_free_ char **l = NULL;
         int n, i;
+        usec_t duration = USEC_PER_SEC / 10;
+
+        if (argc >= 2) {
+                unsigned x;
+
+                assert_se(safe_atou(argv[1], &x) >= 0);
+                duration = x * USEC_PER_SEC;
+        }
 
         n = sd_listen_fds_with_names(false, &l);
         if (n < 0) {
@@ -38,27 +30,27 @@ int main(int argc, char*argv[]) {
 
         sd_notify(0,
                   "STATUS=Starting up");
-        sleep(1);
+        usleep(duration);
 
         sd_notify(0,
                   "STATUS=Running\n"
                   "READY=1");
-        sleep(1);
+        usleep(duration);
 
         sd_notify(0,
                   "STATUS=Reloading\n"
                   "RELOADING=1");
-        sleep(1);
+        usleep(duration);
 
         sd_notify(0,
                   "STATUS=Running\n"
                   "READY=1");
-        sleep(1);
+        usleep(duration);
 
         sd_notify(0,
                   "STATUS=Quitting\n"
                   "STOPPING=1");
-        sleep(1);
+        usleep(duration);
 
         return EXIT_SUCCESS;
 }