mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-21 01:06:58 +00:00
Acked-by: Mike Rapoport <rppt@linux.ibm.com> Signed-off-by: Adrian Reber <areber@redhat.com>
57 lines
1 KiB
C
57 lines
1 KiB
C
#include <stdbool.h>
|
|
#include <string.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/stat.h>
|
|
#include <linux/limits.h>
|
|
|
|
#include "zdtmtst.h"
|
|
|
|
const char *test_doc = "Check that special characters in paths are handled correctly";
|
|
const char *test_author = "Andrew Vagin <avagin@virtuozzo.com>";
|
|
|
|
char *dirname;
|
|
TEST_OPTION(dirname, string, "directory name", 1);
|
|
|
|
#define TEST_DIR "tmpfs \t \t\\\\\t test \t\t\\\\ \t\\"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int ret = 1;
|
|
char test_dir[PATH_MAX], fname[PATH_MAX];
|
|
|
|
test_init(argc, argv);
|
|
|
|
mkdir(dirname, 0700);
|
|
|
|
ssprintf(test_dir, "%s/%s", dirname, TEST_DIR);
|
|
mkdir(test_dir, 0700);
|
|
|
|
if (mount("", test_dir, "tmpfs", 0, NULL)) {
|
|
pr_perror("mount");
|
|
return 1;
|
|
}
|
|
|
|
ssprintf(fname, "%s/\\\t \\\\ \\tt", test_dir);
|
|
if (mkdir(fname, 0700)) {
|
|
pr_perror("mkdir");
|
|
return 1;
|
|
}
|
|
|
|
test_daemon();
|
|
test_waitsig();
|
|
|
|
if (access(fname, F_OK)) {
|
|
fail();
|
|
goto err;
|
|
}
|
|
|
|
pass();
|
|
ret = 0;
|
|
err:
|
|
umount2(test_dir, MNT_DETACH);
|
|
rmdir(test_dir);
|
|
rmdir(dirname);
|
|
return ret;
|
|
}
|