Skip to content

Commit

Permalink
Merge pull request #32957 from mrc0mmand/fix-coverage-builds
Browse files Browse the repository at this point in the history
test: make TEST-65-ANALYZE happy when built with gcov
  • Loading branch information
keszybz committed May 21, 2024
2 parents a5edb9b + d3c14f7 commit dcbf670
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions test/units/TEST-13-NSPAWN.machinectl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ machinectl show-image clone1
machinectl rename clone1 clone2
(! machinectl show-image clone1)
machinectl show-image clone2
# `machinectl read-only` uses chattr (ioctl(FS_IOC_SETFLAGS)) when the container is backed by a directory,
# and this operation might not be implemented on certain filesystems (i.e. tmpfs on older kernels), so check
# if we have chattr support before running following tests
if lsattr -d /var/lib/machines >/dev/null; then
[[ "$(machinectl show-image --property=ReadOnly --value clone2)" == no ]]
machinectl read-only clone2 yes
Expand Down
4 changes: 3 additions & 1 deletion test/units/TEST-65-ANALYZE.sh
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,9 @@ systemd-analyze security --offline=true /tmp/testfile.service
systemd-analyze security --offline=true /tmp/testfile.service | grep -q -F "/dev/sda"

# Make sure that running generators under systemd-analyze verify works.
systemd-analyze verify --generators /tmp/testfile.service
# Note: sd-analyze spawns generators in a sandbox which makes gcov unhapy, so temporarily override
# $GCOV_PREFIX to make it skip generating any coverage reports
GCOV_PREFIX=/tmp systemd-analyze verify --generators /tmp/testfile.service

rm /tmp/testfile.service

Expand Down

0 comments on commit dcbf670

Please sign in to comment.