diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-11-20 06:06:44 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-11-20 06:06:44 +0200 |
commit | b8e2e009bfc2d366117705a1dfc73cfc9f109773 (patch) | |
tree | c97cc9c828700bfe0bba4f6bc5ab04b9798e9923 /test | |
parent | 01c666f65c1632ee537fc144ba66ed47d6efe2bb (diff) | |
parent | 1b260c0cb01f009057e1ebd362e8a3c4f41772e2 (diff) | |
download | egawk-b8e2e009bfc2d366117705a1dfc73cfc9f109773.tar.gz egawk-b8e2e009bfc2d366117705a1dfc73cfc9f109773.tar.bz2 egawk-b8e2e009bfc2d366117705a1dfc73cfc9f109773.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'test')
-rw-r--r-- | test/ChangeLog | 7 | ||||
-rw-r--r-- | test/readdir0.awk | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog index c5a82cfe..c6a82cb1 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,10 @@ +2013-11-20 Arnold D. Robbins <arnold@skeeve.com> + + * readdir0.awk: Use `ls -lan' to get numeric user and group ID + numbers. This keeps the number of fields correct and consistent, even + on systems (like, oh, say, Windows with Cygwin) where group names + can contain spaces. + 2013-11-07 Arnold D. Robbins <arnold@skeeve.com> Solaris fixes. diff --git a/test/readdir0.awk b/test/readdir0.awk index 3a114fcd..f16f4818 100644 --- a/test/readdir0.awk +++ b/test/readdir0.awk @@ -13,7 +13,7 @@ BEGIN { BEGIN { ls_afi = "ls -afi .." - ls_al = "ls -la .. | sed 1d" + ls_al = "ls -lna .. | sed 1d" for (i = 1; (ls_afi | getline) > 0; i++) { # inode number is $1, filename is read of record |