aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog4
-rw-r--r--test/fnmatch.awk3
-rw-r--r--test/fnmatch.ok12
3 files changed, 12 insertions, 7 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index bb270e91..b38cf279 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2012-07-16 Arnold D. Robbins <arnold@skeeve.com>
+
+ * fnmatch.awk, fnmatch.ok: Portability updates.
+
2012-07-15 Arnold D. Robbins <arnold@skeeve.com>
* testext.ok: Update contents.
diff --git a/test/fnmatch.awk b/test/fnmatch.awk
index e8ef9377..c0885074 100644
--- a/test/fnmatch.awk
+++ b/test/fnmatch.awk
@@ -2,8 +2,9 @@
BEGIN {
print "FNM_NOMATCH =", FNM_NOMATCH
+ # can't print the values; they vary from system to system
for (i in FNM)
- printf("FNM[\"%s\"] = %d\n", i, FNM[i])
+ printf("\"%s\" is an element in FNM\n", i)
printf("fnmatch(\"*.a\", \"foo.a\", 0) = %d\n", fnmatch("*.a", "foo.a", 0) )
printf("fnmatch(\"*.a\", \"foo.c\", 0) = %d\n", fnmatch("*.a", "foo.c", 0))
diff --git a/test/fnmatch.ok b/test/fnmatch.ok
index cc17c6b1..fd8a78ce 100644
--- a/test/fnmatch.ok
+++ b/test/fnmatch.ok
@@ -1,9 +1,9 @@
FNM_NOMATCH = 1
-FNM["LEADING_DIR"] = 8
-FNM["CASEFOLD"] = 16
-FNM["NOESCAPE"] = 2
-FNM["PERIOD"] = 4
-FNM["PATHNAME"] = 1
-FNM["FILE_NAME"] = 1
+"LEADING_DIR" is an element in FNM
+"CASEFOLD" is an element in FNM
+"NOESCAPE" is an element in FNM
+"PERIOD" is an element in FNM
+"PATHNAME" is an element in FNM
+"FILE_NAME" is an element in FNM
fnmatch("*.a", "foo.a", 0) = 0
fnmatch("*.a", "foo.c", 0) = 1