Home | History | Annotate | Download | only in fs.op.read_symlink

Lines Matching defs:env

59     scoped_test_env env;
61 env.make_env_path("dne"),
62 env.create_file("file", 42),
63 env.create_dir("dir")
77 scoped_test_env env;
78 const path dne = env.make_env_path("dne");
79 const path file = env.create_file("file", 42);
80 const path dir = env.create_dir("dir");
81 const path link = env.create_symlink(dne, "link");
82 const path nested_link = env.make_env_path("nested_link");
88 {env.create_symlink(dne, "dne_link"), dne},
89 {env.create_symlink(file, "file_link"), file},
90 {env.create_symlink(dir, "dir_link"), dir},