Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Unreadable directories aren't included in glob expansion
- X-seq: zsh-workers 45492
- From: "Jun. T" <takimoto-j@xxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: Re: Unreadable directories aren't included in glob expansion
- Date: Thu, 27 Feb 2020 00:51:44 +0900
- In-reply-to: <20200110170932.yz5wvd4uzr2taq57@tarpaulin.shahaf.local2>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <CGME20200109154313eucas1p13b2e5465f21d059ea08537012e140236@eucas1p1.samsung.com> <20200109154145.rqksfenozx6745rn@tarpaulin.shahaf.local2> <1578585101.6028.13.camel__24021.2781982095$1578585228$gmane$org@samsung.com> <20200109172222.uwgyjouab45zk2gf__13897.4118557357$1578604026$gmane$org@chaz.gmail.com> <20200110072753.yh7qms4w2gb44zcf@chaz.gmail.com> <20200110170932.yz5wvd4uzr2taq57@tarpaulin.shahaf.local2>
(moved from users/24633)
> 2020/01/11 2:09, Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx> wrote:
>
> diff --git a/Test/D02glob.ztst b/Test/D02glob.ztst
(snip)
> + mkdir -m 000 glob.tmp/secret-d000
> + mkdir -m 111 glob.tmp/secret-d111
> + mkdir -m 444 glob.tmp/secret-d444
> + for 1 in 000 111 444 ; do ln -s secret-d$1 glob.tmp/secret-s$1; done
> + print -rC 2 -- glob.tmp/secret-*/ glob.tmp/secret-*(-/)
> +-f:unreadable directories can be globbed (users/24619, users/24626)
(snip)
This test fails on Cygwin, i.e., does not fail as expected.
This is because stat("glob.tmp/secret-d000/.") succeeds on Cygwin.
I asked about this in the cygwin mailing list and learned that
this is the default behavior of Windows and it is not easy for
Cygwin to override it.
I think just skipping this test on Cygwin is enough for now.
diff --git a/Test/D02glob.ztst b/Test/D02glob.ztst
index b0650c8c8..973dc2207 100644
--- a/Test/D02glob.ztst
+++ b/Test/D02glob.ztst
@@ -729,11 +729,15 @@
>not/exist
>exist
- mkdir -m 000 glob.tmp/secret-d000
- mkdir -m 111 glob.tmp/secret-d111
- mkdir -m 444 glob.tmp/secret-d444
- for 1 in 000 111 444 ; do ln -s secret-d$1 glob.tmp/secret-s$1; done
- print -rC 2 -- glob.tmp/secret-*/ glob.tmp/secret-*(-/)
+ if [[ $OSTYPE = cygwin* ]]; then
+ ZTST_skip='Cygwin ignores search permission of directories'
+ else
+ mkdir -m 000 glob.tmp/secret-d000
+ mkdir -m 111 glob.tmp/secret-d111
+ mkdir -m 444 glob.tmp/secret-d444
+ for 1 in 000 111 444 ; do ln -s secret-d$1 glob.tmp/secret-s$1; done
+ print -rC 2 -- glob.tmp/secret-*/ glob.tmp/secret-*(-/)
+ fi
-f:unreadable directories can be globbed (users/24619, users/24626)
>glob.tmp/secret-d000/ glob.tmp/secret-d000
>glob.tmp/secret-d111/ glob.tmp/secret-d111
Messages sorted by:
Reverse Date,
Date,
Thread,
Author