summaryrefslogtreecommitdiffstats
path: root/src/nspawn/test-patch-uid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nspawn/test-patch-uid.c')
-rw-r--r--src/nspawn/test-patch-uid.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/nspawn/test-patch-uid.c b/src/nspawn/test-patch-uid.c
deleted file mode 100644
index f8f44b0b0b..0000000000
--- a/src/nspawn/test-patch-uid.c
+++ /dev/null
@@ -1,43 +0,0 @@
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-
-#include <stdlib.h>
-
-#include "log.h"
-#include "nspawn-patch-uid.h"
-#include "user-util.h"
-#include "string-util.h"
-#include "tests.h"
-
-int main(int argc, char *argv[]) {
- uid_t shift, range;
- int r;
-
- test_setup_logging(LOG_DEBUG);
-
- if (argc != 4) {
- log_error("Expected PATH SHIFT RANGE parameters.");
- return EXIT_FAILURE;
- }
-
- r = parse_uid(argv[2], &shift);
- if (r < 0) {
- log_error_errno(r, "Failed to parse UID shift %s.", argv[2]);
- return EXIT_FAILURE;
- }
-
- r = parse_gid(argv[3], &range);
- if (r < 0) {
- log_error_errno(r, "Failed to parse UID range %s.", argv[3]);
- return EXIT_FAILURE;
- }
-
- r = path_patch_uid(argv[1], shift, range);
- if (r < 0) {
- log_error_errno(r, "Failed to patch directory tree: %m");
- return EXIT_FAILURE;
- }
-
- log_info("Changed: %s", yes_no(r));
-
- return EXIT_SUCCESS;
-}