diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-03-09 18:21:42 +0100 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2016-03-09 18:21:42 +0100 |
commit | bd7e03af007c4e857ed0370eba9e903d6b561937 (patch) | |
tree | 23b7f66162ff1a45d29c5a03fe74c381ffec0ef3 /src/test/test-daemon.c | |
parent | 280d397ab313b647fbd824d1cb58eb8323c74501 (diff) | |
parent | 58015d7815bce405c7c0ac082d8c2f407ec07eeb (diff) |
Merge pull request #2755 from keszybz/more-tests
Enable more tests by default, and even more with `--enable-tests=unsafe`
Diffstat (limited to 'src/test/test-daemon.c')
-rw-r--r-- | src/test/test-daemon.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/test-daemon.c b/src/test/test-daemon.c index 4ce00f4b1f..a7cb426282 100644 --- a/src/test/test-daemon.c +++ b/src/test/test-daemon.c @@ -38,27 +38,27 @@ int main(int argc, char*argv[]) { sd_notify(0, "STATUS=Starting up"); - sleep(5); + sleep(1); sd_notify(0, "STATUS=Running\n" "READY=1"); - sleep(5); + sleep(1); sd_notify(0, "STATUS=Reloading\n" "RELOADING=1"); - sleep(5); + sleep(1); sd_notify(0, "STATUS=Running\n" "READY=1"); - sleep(5); + sleep(1); sd_notify(0, "STATUS=Quitting\n" "STOPPING=1"); - sleep(5); + sleep(1); return EXIT_SUCCESS; } |