diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-04-10 03:40:49 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2023-04-10 05:34:30 +0900 |
commit | 1538136911db66af220bf56bba85fc42dbbfca37 (patch) | |
tree | 80afcf66d033584719d129648058b1c60a728703 /test/units/testsuite-65.sh | |
parent | 63d7632d87a4a7d8bcfbc267bc423576e650475e (diff) | |
download | systemd-1538136911db66af220bf56bba85fc42dbbfca37.tar.gz |
test: systemd-analyze blame should succeed now
Diffstat (limited to 'test/units/testsuite-65.sh')
-rwxr-xr-x | test/units/testsuite-65.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/units/testsuite-65.sh b/test/units/testsuite-65.sh index edaf667107..0ee56dfc00 100755 --- a/test/units/testsuite-65.sh +++ b/test/units/testsuite-65.sh @@ -11,13 +11,15 @@ export SYSTEMD_LOG_LEVEL=debug # Sanity checks # -# We can't really test time, blame, critical-chain and plot verbs here, as +# We can't really test time, critical-chain and plot verbs here, as # the testsuite service is a part of the boot transaction, so let's assume # they fail systemd-analyze || : systemd-analyze time || : -systemd-analyze blame || : systemd-analyze critical-chain || : +# blame +systemd-analyze blame +systemd-run --wait --user --pipe -M testuser@.host systemd-analyze blame # plot systemd-analyze plot >/dev/null || : systemd-analyze plot --json=pretty >/dev/null || : |