mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
test: make test-udev accept only check when argc == 2
Follow-up for 110a13202e
.
This commit is contained in:
parent
bf877a54c7
commit
acc1bc9918
@ -69,8 +69,14 @@ int main(int argc, char *argv[]) {
|
|||||||
if (fake_filesystems() < 0)
|
if (fake_filesystems() < 0)
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
|
|
||||||
if (argc == 2)
|
if (argc == 2) {
|
||||||
|
if (!streq(argv[1], "check")) {
|
||||||
|
log_error("Unknown argument: %s", argv[1]);
|
||||||
|
return EXIT_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
log_debug("version %s", PACKAGE_VERSION);
|
log_debug("version %s", PACKAGE_VERSION);
|
||||||
mac_selinux_init();
|
mac_selinux_init();
|
||||||
|
Loading…
Reference in New Issue
Block a user