ash: clarify uclibc glob() bug in comment
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 21 Dec 2016 20:04:16 +0000 (21:04 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 1 Jan 2017 12:01:04 +0000 (13:01 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index 7d45b2cd2c6c4c0ffffdeff8edee1e9f3a2808ce..802626d4ef0a9be01c1009668fb903e66b74faba 100644 (file)
@@ -57,6 +57,9 @@
 # error with backslash, even ones which do not need to be: "/a-b" -> "/a\-b"
 # error glob() should unbackslash them and match. uClibc does not unbackslash,
 # error fails to match dirname, subsequently not expanding <pattern> in it.
+// Testcase:
+// if (glob("/etc/polkit\\-1", 0, NULL, &pglob)) - this returns 0 on uclibc, no bug
+// if (glob("/etc/polkit\\-1/*", 0, NULL, &pglob)) printf("uclibc bug!\n");
 #endif
 
 #if !ENABLE_ASH_INTERNAL_GLOB