blob: ee4f280fc9bee759bbd5e6bdcebb0385cfd6c2ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
This will only fail on aarch64 and s390x, for some reason.
--- a/src/test/test_util.c
+++ b/src/test/test_util.c
@@ -4633,21 +4633,6 @@ test_util_glob(void *ptr)
TEST("file1"PATH_SEPARATOR"*");
EXPECT_EMPTY();
-#ifndef _WIN32
- // test wildcard escaping
- TEST("\\*");
- EXPECT_EMPTY();
-
- if (getuid() != 0) {
- // test forbidden directory, if we're not root.
- // (Root will be able to see this directory anyway.)
- tor_asprintf(&pattern, "%s"PATH_SEPARATOR"*"PATH_SEPARATOR"*", dirname);
- results = tor_glob(pattern);
- tor_free(pattern);
- tt_assert(!results);
- }
-#endif /* !defined(_WIN32) */
-
#undef TEST
#undef EXPECT
#undef EXPECT_EMPTY
|