Skip to content

Commit

Permalink
Merge pull request systemd#32201 from aafeijoo-suse/test-minor-fixes
Browse files Browse the repository at this point in the history
test: minor fixes
  • Loading branch information
mrc0mmand authored Apr 10, 2024
2 parents ffd0cca + 2ad44c2 commit 0ab87eb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/shared/tests.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

#include <stdbool.h>
#include <sys/prctl.h>
#include <unistd.h>

#include "sd-daemon.h"

Expand Down
7 changes: 6 additions & 1 deletion tools/check-version-history.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@

import os
import sys
import lxml.etree as tree

try:
import lxml.etree as tree
except ImportError as e:
print(str(e), file=sys.stderr)
sys.exit(77)

_parser = tree.XMLParser(resolve_entities=False)
tree.set_default_parser(_parser)
Expand Down

0 comments on commit 0ab87eb

Please sign in to comment.